RemoteProvider.Deploy<TElement> Method (IQbservable<TElement>, String)

Deploys a remote sequence.

Namespace:  Microsoft.ComplexEventProcessing.Linq
Assembly:  Microsoft.ComplexEventProcessing (in Microsoft.ComplexEventProcessing.dll)

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Deploy(Of TElement) ( _
    definition As IQbservable(Of TElement), _
    id As String _
) As IQbservable(Of TElement)
'Usage
Dim definition As IQbservable(Of TElement)
Dim id As String 
Dim returnValue As IQbservable(Of TElement)

returnValue = definition.Deploy(id)
public static IQbservable<TElement> Deploy<TElement>(
    this IQbservable<TElement> definition,
    string id
)
[ExtensionAttribute]
public:
generic<typename TElement>
static IQbservable<TElement>^ Deploy(
    IQbservable<TElement>^ definition, 
    String^ id
)
static member Deploy : 
        definition:IQbservable<'TElement> * 
        id:string -> IQbservable<'TElement> 
JScript does not support generic types and methods.

Type Parameters

  • TElement
    The element type.

Parameters

Return Value

Type: System.Reactive.Linq.IQbservable<TElement>
The remote sequence.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IQbservable<TElement>. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=sql.111) or https://msdn.microsoft.com/en-us/library/bb383977(v=sql.111).

See Also

Reference

RemoteProvider Class

Deploy Overload

Microsoft.ComplexEventProcessing.Linq Namespace