CcmHttpStatus Class
Represents an event that denotes that a certain HTTP status was sent. This can be a success or failure.
Note: This breaks the rules for severity, therefore, if you don't want the severity of this message to be Informational, you must use SetSeverity() to change it.
Namespace: Microsoft.ConfigurationManagement.Messaging.StatusMessages
Assembly: Microsoft.ConfigurationManagement.Messaging (in Microsoft.ConfigurationManagement.Messaging.dll)
Inheritance Hierarchy
System.Object
Microsoft.ConfigurationManagement.Messaging.StatusMessages.CcmEvent
Microsoft.ConfigurationManagement.Messaging.StatusMessages.CcmHttpStatus
Syntax
[SerializableAttribute]
public sealed class CcmHttpStatus : CcmEvent
[SerializableAttribute]
public ref class CcmHttpStatus sealed : CcmEvent
<SerializableAttribute>
Public NotInheritable Class CcmHttpStatus
Inherits CcmEvent
Constructors
Name | Description | |
---|---|---|
CcmHttpStatus() | Initializes a new instance of the CcmHttpStatus class. |
Properties
Name | Description | |
---|---|---|
ClientId | Gets or sets the client ID of the client sending the status message. (Inherited from CcmEvent.) |
|
DateTime | Gets or sets the time for the status message. The default value is Now. This value needs to be set to a SmsTime-style format, not a DateTime format, or serialization on the management point will fail. (Inherited from CcmEvent.) |
|
EventId | Gets or sets the NT event ID for the message. (Inherited from CcmEvent.) |
|
HostName | Gets or sets the destination host name that generated the message. |
|
HResult | Gets or sets the HRESULT for the associated status. |
|
ProcessId | Gets or sets the ProcessID for the message. The default value is the ID for the current process. (Inherited from CcmEvent.) |
|
Severity | Gets the severity. This status message breaks the rules about severity. Use SetSeverity() to set this on a per-instance basis. The default severity is Informational. (Overrides CcmEvent.Severity.) |
|
StatusCode | Gets or sets the HTTP status code. |
|
StatusMessageType | Gets the status message event type. (Overrides CcmEvent.StatusMessageType.) |
|
ThreadId | Gets or sets the ThreadID for the message. The default value is the thread ID for the current process. (Inherited from CcmEvent.) |
Methods
Name | Description | |
---|---|---|
Equals(Object) | (Inherited from Object.) |
|
GetHashCode() | (Inherited from Object.) |
|
GetType() | (Inherited from Object.) |
|
SetSeverity(StatusEventSeverity) | Changes the severity of an event message. If the HTTP status event is an error, use this method to change its status. |
|
ToString() | (Inherited from Object.) |
Thread Safety
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
See Also
Microsoft.ConfigurationManagement.Messaging.StatusMessages Namespace
Return to top