Click or drag to resize

SmtpTraceListener Class

Represents an e-mail based TraceListener.
Inheritance Hierarchy
SystemObject
  SystemMarshalByRefObject
    System.DiagnosticsTraceListener
      GSF.ErrorManagementSmtpTraceListener

Namespace: GSF.ErrorManagement
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public class SmtpTraceListener : TraceListener
View Source

The SmtpTraceListener type exposes the following members.

Constructors
 NameDescription
Public methodSmtpTraceListener Initializes a new instance of the SmtpTraceListener class.
Public methodSmtpTraceListener(String) Initializes a new instance of the SmtpTraceListener class.
Top
Properties
 NameDescription
Public propertyAttributesGets the custom trace listener attributes defined in the application configuration file.
(Inherited from TraceListener)
Public propertyFilterGets or sets the trace filter for the trace listener.
(Inherited from TraceListener)
Public propertyIndentLevelGets or sets the indent level.
(Inherited from TraceListener)
Public propertyIndentSizeGets or sets the number of spaces in an indent.
(Inherited from TraceListener)
Public propertyIsThreadSafeGets a value indicating whether the trace listener is thread safe.
(Inherited from TraceListener)
Public propertyNameGets or sets a name for this TraceListener.
(Inherited from TraceListener)
Protected propertyNeedIndentGets or sets a value indicating whether to indent the output.
(Inherited from TraceListener)
Public propertyTraceOutputOptionsGets or sets the trace output options.
(Inherited from TraceListener)
Top
Methods
 NameDescription
Public methodCloseWhen overridden in a derived class, closes the output stream so it no longer receives tracing or debugging output.
(Inherited from TraceListener)
Public methodCreateObjRefCreates an object that contains all the relevant information required to generate a proxy used to communicate with a remote object.
(Inherited from MarshalByRefObject)
Public methodDisposeReleases all resources used by the TraceListener.
(Inherited from TraceListener)
Protected methodDispose(Boolean)Releases the unmanaged resources used by the TraceListener and optionally releases the managed resources.
(Inherited from TraceListener)
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Public methodFail(String)Emits an error message to the listener you create when you implement the TraceListener class.
(Inherited from TraceListener)
Public methodFail(String, String)Emits an error message and a detailed error message to the listener you create when you implement the TraceListener class.
(Inherited from TraceListener)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodFlushWhen overridden in a derived class, flushes the output buffer.
(Inherited from TraceListener)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetLifetimeServiceRetrieves the current lifetime service object that controls the lifetime policy for this instance.
(Inherited from MarshalByRefObject)
Protected methodGetSupportedAttributesGets the custom attributes supported by the trace listener.
(Inherited from TraceListener)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodInitializeLifetimeServiceObtains a lifetime service object to control the lifetime policy for this instance.
(Inherited from MarshalByRefObject)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Protected methodMemberwiseClone(Boolean)Creates a shallow copy of the current MarshalByRefObject object.
(Inherited from MarshalByRefObject)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodTraceData(TraceEventCache, String, TraceEventType, Int32, Object)Writes trace information, a data object and event information to the listener specific output.
(Inherited from TraceListener)
Public methodTraceData(TraceEventCache, String, TraceEventType, Int32, Object)Writes trace information, an array of data objects and event information to the listener specific output.
(Inherited from TraceListener)
Public methodTraceEvent(TraceEventCache, String, TraceEventType, Int32)Writes trace and event information to the listener specific output.
(Inherited from TraceListener)
Public methodTraceEvent(TraceEventCache, String, TraceEventType, Int32, String)Writes trace information, a message, and event information to the listener specific output.
(Inherited from TraceListener)
Public methodTraceEvent(TraceEventCache, String, TraceEventType, Int32, String, Object)Writes trace information, a formatted array of objects and event information to the listener specific output.
(Inherited from TraceListener)
Public methodTraceTransferWrites trace information, a message, a related activity identity and event information to the listener specific output.
(Inherited from TraceListener)
Public methodWrite(Object)Writes the value of the object's ToString method to the listener you create when you implement the TraceListener class.
(Inherited from TraceListener)
Public methodWrite(String) Sends an e-mail message containing the specified message.
(Overrides TraceListenerWrite(String))
Public methodWrite(Object, String)Writes a category name and the value of the object's ToString method to the listener you create when you implement the TraceListener class.
(Inherited from TraceListener)
Public methodWrite(String, String)Writes a category name and a message to the listener you create when you implement the TraceListener class.
(Inherited from TraceListener)
Protected methodWriteIndentWrites the indent to the listener you create when you implement this class, and resets the NeedIndent property to .
(Inherited from TraceListener)
Public methodWriteLine(Object)Writes the value of the object's ToString method to the listener you create when you implement the TraceListener class, followed by a line terminator.
(Inherited from TraceListener)
Public methodWriteLine(String) Sends an e-mail message containing the specified message.
(Overrides TraceListenerWriteLine(String))
Public methodWriteLine(Object, String)Writes a category name and the value of the object's ToString method to the listener you create when you implement the TraceListener class, followed by a line terminator.
(Inherited from TraceListener)
Public methodWriteLine(String, String)Writes a category name and a message to the listener you create when you implement the TraceListener class, followed by a line terminator.
(Inherited from TraceListener)
Top
Extension Methods
 NameDescription
Public Extension MethodGetEnumValueOrDefault Gets the enumeration constant for value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Public Extension MethodGetEnumValueOrDefaultT Gets the enumeration constant for this value, if defined in the enumeration, or a default value.
(Defined by EnumExtensions)
Top
Example
Below is the config file entry required for enabling e-mail based tracing using SmtpTraceListener:
C#
<configuration>
  <system.diagnostics>
    <trace>
      <listeners>
        <add name="SmtpTraceListener" type="GSF.ErrorManagement.SmtpTraceListener,GSF.Core" initializeData="sender@email.com,recipient@email.com,smtp.email.com"/>
      </listeners>
    </trace>
  </system.diagnostics>
</configuration>
See Also