CepObject.Name Property

Gets the name of this object.

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

Syntax

public Uri Name { get; internal set; }

Property Value

Type: System.Uri
The name of the object.

Remarks

The URI value of this property represents the name of the CEP object in metadata, according to the CEP name hierarchy.

Examples

Application app = server.CreateApplication("MyApp");
InputAdapter inputAdapter = app.CreateInputAdapter{MyFactory}("MyInputAdapter", "");
Console.WriteLine(inputAdapter.Name);

This code will produce the following output:

cep:/Server/Application/MyApp/InputAdapter/MyInputAdapter

See Also

Reference

CepObject Class

Microsoft.ComplexEventProcessing Namespace