Description
The PostFunction - custom function to call after all propagation ends.
Property type
Read-write property
Syntax
[Visual Basic .NET] |
---|
Public Property PostFunctionName() As String
|
[C#] |
---|
public string PostFunctionName {get; set;}
|
[Managed C++] |
---|
public: __property String __gc ^ get_PostFunctionName(); public: __property void set_PostFunctionName(
String __gc ^
);
|
[Unmanaged C++] |
---|
public: HRESULT get_PostFunctionName(
BSTR * pPostFunction
);
public: HRESULT put_PostFunctionName(
BSTR PostFunction
);
|
[Java] |
---|
public String getPostFunctionName();
public void setPostFunctionName(
String
);
|
[Python - STK API] |
---|
@property
def PostFunctionName(self) -> str:
@PostFunctionName.setter
def PostFunctionName(self, PostFunction:str) -> None:
|
See Also