Create a function field of the specified name, argument list and return type.

Namespace: StreamBase.SB
Assembly: StreamBase.SB.Client (in StreamBase.SB.Client.dll) Version: 7.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public static Schema..::..Field CreateFunctionField(
	string name,
	Schema arguments,
	CompleteDataType returnType
)
Public Shared Function CreateFunctionField ( _
	name As String, _
	arguments As Schema, _
	returnType As CompleteDataType _
) As Schema..::..Field
public:
static Schema..::..Field^ CreateFunctionField(
	String^ name, 
	Schema^ arguments, 
	CompleteDataType^ returnType
)

Parameters

name
String
the name of the new field.
arguments
Schema
the Schema containing the arguments taken by the new function.
returnType
CompleteDataType
the return type of the new function.

See Also