StructuredRepositorySystemUtility<T>.ExecuteStatic Method
Executes a MethodInstance in the model against the specified external system instance with given parameters.
Namespace: Microsoft.Office.Server.Search.Connector.BDC
Assembly: Microsoft.Office.Server.Search.Connector (in Microsoft.Office.Server.Search.Connector.dll)
Syntax
'Declaration
Public Overridable Sub ExecuteStatic ( _
methodInstance As IMethodInstance, _
lobSystemInstance As ILobSystemInstance, _
args As Object(), _
context As IExecutionContext _
)
'Usage
Dim instance As StructuredRepositorySystemUtility
Dim methodInstance As IMethodInstance
Dim lobSystemInstance As ILobSystemInstance
Dim args As Object()
Dim context As IExecutionContext
instance.ExecuteStatic(methodInstance, _
lobSystemInstance, args, context)
public virtual void ExecuteStatic(
IMethodInstance methodInstance,
ILobSystemInstance lobSystemInstance,
Object[] args,
IExecutionContext context
)
Parameters
methodInstance
Type: Microsoft.BusinessData.MetadataModel.IMethodInstanceThe method instance being executed.
lobSystemInstance
Type: Microsoft.BusinessData.MetadataModel.ILobSystemInstanceThe external system instance which the method instance is being executed against.
args
Type: []Parameters of the method. The size of the parameter array is equal to the number of parameter objects in the method, and the values are going to be passed in order. Out and return parameters will be a null reference (Nothing in Visual Basic).
context
Type: Microsoft.BusinessData.Runtime.IExecutionContextExecutionContext in which this execution is happening. This value will be a null reference (Nothing in Visual Basic) if ExecutionContext is not created.
Implements
ISystemUtility.ExecuteStatic(IMethodInstance, ILobSystemInstance, [], IExecutionContext)
See Also
Reference
StructuredRepositorySystemUtility<T> Class