RemoteProvider.Deploy<T1, T2, T3, T4, T5, T6, TElement> Method (Func<T1, T2, T3, T4, T5, T6, IQbservable<TElement>>, String)

Deploys a remote function that returns a sequence.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function Deploy(Of T1, T2, T3, T4, T5, T6, TElement) ( _
    definition As Func(Of T1, T2, T3, T4, T5, T6, IQbservable(Of TElement)), _
    id As String _
) As Func(Of T1, T2, T3, T4, T5, T6, IQbservable(Of TElement))
'Usage
Dim definition As Func(Of T1, T2, T3, T4, T5, T6, IQbservable(Of TElement))
Dim id As String 
Dim returnValue As Func(Of T1, T2, T3, T4, T5, T6, IQbservable(Of TElement))

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

Type Parameters

  • T1
    The first parameter type.
  • T2
    The second parameter type.
  • T3
    The third parameter type.
  • T4
    The fourth parameter type.
  • T5
    The fifth parameter type.
  • T6
    The sixth parameter type.
  • TElement
    The element type.

Parameters

Return Value

Type: System.Func<T1, T2, T3, T4, T5, T6, IQbservable<TElement>>
The remote sequence function.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type Func<T1, T2, T3, T4, T5, T6, 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