 | ConfigurationCommonEventTypeAutoNameNamespaces Property |
Returns a set of namespaces that event classes reside in.
This setting allows an application to place all it's events into one or more namespaces
and then declare these packages via this method. The runtime
attempts to resolve an event type name to a type residing in each declared package.
For example, in the statement "select * from MyEvent" the runtime attempts to load class "namespace.MyEvent"
and if successful, uses that class as the event type.
Namespace:
com.espertech.esper.common.client.configuration.common
Assembly:
NEsper.Common (in NEsper.Common.dll) Version: 8.0.0.0
Syntaxpublic ISet<string> EventTypeAutoNameNamespaces { get; }
Property Value
Type:
ISetStringset namespaces to look for events types when encountering a new event type name
See Also