OutputWindowTextWriter.WriteLineWithId(Guid, UInt32, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.