| IRtModelBuilderDeclFunction Method |
Called by Rogue Wave Server to declare a Server member
function.
Namespace: RW.Server.ComponentAssembly: RW.Server.Component (in RW.Server.Component.dll) Version: 6.3.0.0 (0.8.0.0)
Syntax void DeclFunction(
string signature,
bool isAuto,
bool isExported,
bool isDynamic,
bool isGlobal
)
Sub DeclFunction (
signature As String,
isAuto As Boolean,
isExported As Boolean,
isDynamic As Boolean,
isGlobal As Boolean
)
void DeclFunction(
String^ signature,
bool isAuto,
bool isExported,
bool isDynamic,
bool isGlobal
)
Parameters
- signature
- Type: SystemString
The signature of the function. - isAuto
- Type: SystemBoolean
Set to true if the function has been implicitly
declared in the Server model interpreter. - isExported
- Type: SystemBoolean
Set to true if the function has been declared
exported. - isDynamic
- Type: SystemBoolean
Set to true if the function has been declared
dynamic. - isGlobal
- Type: SystemBoolean
Set to true if the function has been declared
global.
Remarks See Also