Server.GetTypeDefinition Method

Returns the type definition as it exists on the remote server.

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

Syntax

'Declaration
Public Function GetTypeDefinition ( _
    name As String, _
    assemblyName As String, _
    genericArguments As IEnumerable(Of Tuple(Of String, String)) _
) As String
'Usage
Dim instance As Server 
Dim name As String 
Dim assemblyName As String 
Dim genericArguments As IEnumerable(Of Tuple(Of String, String))
Dim returnValue As String 

returnValue = instance.GetTypeDefinition(name, _
    assemblyName, genericArguments)
public string GetTypeDefinition(
    string name,
    string assemblyName,
    IEnumerable<Tuple<string, string>> genericArguments
)
public:
String^ GetTypeDefinition(
    String^ name, 
    String^ assemblyName, 
    IEnumerable<Tuple<String^, String^>^>^ genericArguments
)
member GetTypeDefinition : 
        name:string * 
        assemblyName:string * 
        genericArguments:IEnumerable<Tuple<string, string>> -> string
public function GetTypeDefinition(
    name : String, 
    assemblyName : String, 
    genericArguments : IEnumerable<Tuple<String, String>>
) : String

Parameters

  • assemblyName
    Type: System.String
    The full name of the assembly.

Return Value

Type: System.String
The type definition in serialized format.

See Also

Reference

Server Class

Microsoft.ComplexEventProcessing Namespace