This topic has not yet been rated - Rate this topic

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)
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.

Development Platforms

The 32-bit and 64-bit editions of Windows Server 2003 R2 (except the Web Editions); The 32-bit and 64-bit editions of Windows Server 2003 SP2 (except the Web Edition); The 32-bit and 64-bit editions of Windows Server 2008 (except the Web Server Editions); Windows Small Business Server 2003 with SP2; The 32-bit and 64-bit editions of Windows Vista Ultimate, Enterprise and Business editions with Service Pack 1; The 32-bit and 64-bit editions of Windows XP Professional with Service Pack 3

Target Platforms

The 32-bit and 64-bit editions of Windows Server 2003 R2 (except the Web Editions); The 32-bit and 64-bit editions of Windows Server 2003 SP2 (except the Web Edition); The 32-bit and 64-bit editions of Windows Server 2008 (except the Web Server Editions); Windows Small Business Server 2003 with SP2
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.