Click or drag to resize

MessageClass Enumeration

Gets the classification of the message.

Namespace: GSF.Diagnostics
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.282-beta+fbfa6baa1521236175f6d73fb2eb151a42453aef
Syntax
public enum MessageClass
View Source
Members
Member nameValueDescription
Component0 Messages that come from core components. These messages are for classes that are not working towards a specific framework or application, but can generally be used.
Framework1 Messages from higher level software components. A framework is what makes the underlying application work and is the assimilation of components for a specific purpose. Use this if the intent is that this code will be shared among many different applications and may be implemented differently in those applications. This is different from Component as it has a more specific and defined purpose.
Application2 These messages are for the highest layer of an application. Messages like 'Application X is starting up, shutting down' would go here.

The MessageClass type exposes the following members.

Extension Methods
 NameDescription
Public Extension MethodGetDescription Retrieves the description of the value that this Enum represents extracted from the DescriptionAttribute, or the enumeration name if no description is available.
(Defined by EnumExtensions)
Public Extension MethodGetFormattedName Retrieves a formatted name of the value that this Enum represents for visual display.
(Defined by EnumExtensions)
Top
See Also