public class TrackingServices
|
| ctor #1 | Default constructor. This constructor is called by derived class constructors to initialize state in this type. |
| RegisteredHandlers | Read-only Gets an array of the tracking handlers that are currently registered with TrackingServices in the current AppDomain. |
| Equals (inherited from System.Object) |
See base class member description: System.Object.Equals Derived from System.Object, the primary base class for all objects. |
| GetHashCode (inherited from System.Object) |
See base class member description: System.Object.GetHashCode Derived from System.Object, the primary base class for all objects. |
| GetType (inherited from System.Object) |
See base class member description: System.Object.GetType Derived from System.Object, the primary base class for all objects. |
| RegisterTrackingHandler | Registers a new tracking handler with the TrackingServices. |
| ToString (inherited from System.Object) |
See base class member description: System.Object.ToString Derived from System.Object, the primary base class for all objects. |
| UnregisterTrackingHandler | Unregisters the specified tracking handler from TrackingServices. |
| Finalize (inherited from System.Object) |
See base class member description: System.Object.Finalize Derived from System.Object, the primary base class for all objects. |
| MemberwiseClone (inherited from System.Object) |
See base class member description: System.Object.MemberwiseClone Derived from System.Object, the primary base class for all objects. |
Hierarchy:
public TrackingServices(); |
public static ITrackingHandler[] RegisteredHandlers {get;}
|
~TrackingServices(); |
public virtual int GetHashCode(); |
public Type GetType(); |
protected object MemberwiseClone(); |
public static void RegisterTrackingHandler( |
handler
| Exception Type | Condition |
|---|---|
| ArgumentNullException | handler is null. |
| RemotingException | The handler indicated in the handler parameter is already registered with TrackingServices. |
public virtual string ToString(); |
public static void UnregisterTrackingHandler( |
handler
| Exception Type | Condition |
|---|---|
| ArgumentNullException | handler is null. |
| RemotingException | The handler indicated in the handler parameter is not registered with TrackingServices. |