BaseFunctoid.GetInlineScriptBuffer Method
Override this function if the functoid can accept a variable number of inputs.
Namespace: Microsoft.BizTalk.BaseFunctoids
Assembly: Microsoft.BizTalk.BaseFunctoids (in microsoft.biztalk.basefunctoids.dll)
Assembly: Microsoft.BizTalk.BaseFunctoids (in microsoft.biztalk.basefunctoids.dll)
Dim scriptType As ScriptType Dim numParams As Integer Dim functionNumber As Integer Dim returnValue As String returnValue = Me.GetInlineScriptBuffer(scriptType, numParams, functionNumber)
protected virtual string GetInlineScriptBuffer ( ScriptType scriptType, int numParams, int functionNumber )
protected String GetInlineScriptBuffer ( ScriptType scriptType, int numParams, int functionNumber )
protected function GetInlineScriptBuffer ( scriptType : ScriptType, numParams : int, functionNumber : int ) : String
Parameters
- scriptType
One of the ScriptType values that specifies the language of the inline script.
- numParams
The number of parameters to accommodate in the script buffer.
- functionNumber
The function number in the case of a cumulative functoid. Valid values for are 0, 1 and 2.
Return Value
The inline script buffer.This function will be used whenever the HasVariableInputs property is set to true. During the map compile time, the mapper compiler will call this function with the appropriate number of parameters. This function should then return the correct script buffer accommodating as many input parameters as specified in the parameter numParams.
Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.