CepUtility.DoNotCall Method ()

 

Indicates that a given method is not supposed to be called and executed. This is used to decorate the extension methods for user-defined operators and user-defined aggregates so that the user will not accidentally execute it.

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

Syntax

public static InvalidOperationException DoNotCall()
public:
static InvalidOperationException^ DoNotCall()
static member DoNotCall : unit -> InvalidOperationException
Public Shared Function DoNotCall As InvalidOperationException

Return Value

Type: System.InvalidOperationException

An InvalidOperationException object.

Remarks

This is used to decorate the extension methods for user-defined operators and user-defined aggregates so that the user will not accidentally execute it.

See Also

CepUtility Class
Microsoft.ComplexEventProcessing.Linq Namespace

Return to top