OutputWindowTextWriter.WriteLineWithId(Guid, UInt32, String) Method

Definition

Output a message to IVsOutputWindowPane that can be correlated to Error tasks.

public:
 void WriteLineWithId(Guid messageProviderGuid, System::UInt32 messageId, System::String ^ value);
public void WriteLineWithId (Guid messageProviderGuid, uint messageId, string value);
member this.WriteLineWithId : Guid * uint32 * string -> unit
Public Sub WriteLineWithId (messageProviderGuid As Guid, messageId As UInteger, value As String)

Parameters

messageProviderGuid
Guid

Provider Guid. Provider (defined by the Guid) is essentially "namespace" for the messages id's. It is expected all id's to be unique within the scope of the same provider.

messageId
UInt32

Message ID (unique withing messageProviderGuid provider).

value
String

String to output.

Applies to