Application.IRemoteProvider.Deploy Method
Deploys the specified definition.
Namespace: Microsoft.ComplexEventProcessing
Assembly: Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)
Syntax
'Declaration
Private Sub Deploy ( _
expression As Expression, _
id As String _
) Implements IRemoteProvider.Deploy
'Usage
Dim instance As Application
Dim expression As Expression
Dim id As String
CType(instance, IRemoteProvider).Deploy(expression, _
id)
void IRemoteProvider.Deploy(
Expression expression,
string id
)
private:
virtual void Deploy(
Expression^ expression,
String^ id
) sealed = IRemoteProvider::Deploy
private abstract Deploy :
expression:Expression *
id:string -> unit
private override Deploy :
expression:Expression *
id:string -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameters
- expression
Type: System.Linq.Expressions.Expression
The definition to be deployed.
- id
Type: System.String
The definition identifier.
Implements
IRemoteProvider.Deploy(Expression, String)