UpdateInstallResult Constructor (String, String, String, String, ResultCode, Int32, Boolean, DateTime)

 

Creates an instance of the UpdateInstallResult class.

Namespace:   Microsoft.ClusterAwareUpdating
Assembly:  ClusterAwareUpdating (in ClusterAwareUpdating.dll)

Syntax

public UpdateInstallResult(
    string nodeName,
    string updateId,
    string updateTitle,
    string updateDescription,
    ResultCode resultCode,
    int errorCode,
    bool rebootRequired,
    DateTime updateTimestamp
)
public:
UpdateInstallResult(
    String^ nodeName,
    String^ updateId,
    String^ updateTitle,
    String^ updateDescription,
    ResultCode resultCode,
    int errorCode,
    bool rebootRequired,
    DateTime updateTimestamp
)
new : 
        nodeName:string *
        updateId:string *
        updateTitle:string *
        updateDescription:string *
        resultCode:ResultCode *
        errorCode:int *
        rebootRequired:bool *
        updateTimestamp:DateTime -> UpdateInstallResult
Public Sub New (
    nodeName As String,
    updateId As String,
    updateTitle As String,
    updateDescription As String,
    resultCode As ResultCode,
    errorCode As Integer,
    rebootRequired As Boolean,
    updateTimestamp As Date
)

Parameters

  • nodeName
    Type: System.String

    The name of the node that was updated.

  • updateId
    Type: System.String

    The unique identifier for the update.

  • updateDescription
    Type: System.String

    The description of the update.

  • errorCode
    Type: System.Int32

    The error code from the install operation.

  • rebootRequired
    Type: System.Boolean

    True if a reboot is required; otherwise false.

  • updateTimestamp
    Type: System.DateTime

    The time stamp of the install operation.

See Also

UpdateInstallResult Overload
UpdateInstallResult Class
Microsoft.ClusterAwareUpdating Namespace

Return to top