WriteMessageCallback Delegate

 

Represents a callback for a write message CIM operation.

Namespace:   Microsoft.Management.Infrastructure.Options
Assembly:  Microsoft.Management.Infrastructure (in Microsoft.Management.Infrastructure.dll)

Syntax

public delegate void WriteMessageCallback(
    uint channel,
    string message
)
public delegate void WriteMessageCallback(
    unsigned int channel,
    String^ message
)
type WriteMessageCallback = 
    delegate of 
        channel:uint32 *
        message:string -> unit
Public Delegate Sub WriteMessageCallback (
    channel As UInteger,
    message As String
)

Parameters

  • channel
    Type: System.UInt32

    An integer that specifies the channel used for sending and receiving the message.

See Also

Microsoft.Management.Infrastructure.Options Namespace

Return to top