CepObject.ShortName Property

Gets the short name of the CEP object.

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

Syntax

public string ShortName { get; internal set; }

Property Value

Type: System.String
The relative URI of the CEP object, without the full metadata path of the object.

Examples

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

This code will produce the following output:

MyInputAdapter

See Also

Reference

CepObject Class

Microsoft.ComplexEventProcessing Namespace