[TIBCO.EMS .NET Admin client library 6.0 documentation]
Assembly: TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)
Enable client tracing with specific settings.
Namespace:
TIBCO.EMS.ADMINAssembly: TIBCO.EMS.ADMIN (in TIBCO.EMS.ADMIN.dll)
Syntax
public void EnableClientTracing( ClientTraceTarget target, ClientTraceFilter filterType, Object filterValue ) |
Public Sub EnableClientTracing ( _ target As ClientTraceTarget, _ filterType As ClientTraceFilter, _ filterValue As Object _ ) |
public: void EnableClientTracing( ClientTraceTarget target, ClientTraceFilter filterType, Object^ filterValue ) |
Parameters
- target
- Type: TIBCO.EMS.ADMIN..::.ClientTraceTarget
target for client tracing, must be either ClientTraceTarget.Stdout or ClientTraceTarget.Stderr.
- filterType
- Type: TIBCO.EMS.ADMIN..::.ClientTraceFilter
type of filter to be applied, either ClientTraceFilter.None for no filtering or one of ClientTraceFilter.User, ClientTraceFilter.ClientID or ClientTraceFilter.ConnID.
- filterValue
- Type: System..::.Object
value a client needs to match for client tracing to be enabled. For ClientTraceFilter.User and ClientTraceFilter.ClientID this must be a string, for ClientTraceFilter.ConnID must be an Int64.
Exceptions
Exception | Condition |
---|---|
System..::.ArgumentException | if target or filterType are not valid or the type of filterValue does not match the type required for the given filterType. |