ExtendedBuildWarningEventArgs Class
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.
Generic custom warning events including extended data for event enriching. Extended data are implemented by IExtendedBuildEventArgs
public ref class ExtendedBuildWarningEventArgs sealed : Microsoft::Build::Framework::BuildWarningEventArgs, Microsoft::Build::Framework::IExtendedBuildEventArgs
public sealed class ExtendedBuildWarningEventArgs : Microsoft.Build.Framework.BuildWarningEventArgs, Microsoft.Build.Framework.IExtendedBuildEventArgs
type ExtendedBuildWarningEventArgs = class
inherit BuildWarningEventArgs
interface IExtendedBuildEventArgs
Public NotInheritable Class ExtendedBuildWarningEventArgs
Inherits BuildWarningEventArgs
Implements IExtendedBuildEventArgs
- Inheritance
-
ExtendedBuildWarningEventArgs
- Implements
Constructors
ExtendedBuildWarningEventArgs(String) |
This constructor specifies only type of extended data. |
ExtendedBuildWarningEventArgs(String, String, String, String, Int32, Int32, Int32, Int32, String, String, String) |
This constructor allows all event data to be initialized |
ExtendedBuildWarningEventArgs(String, String, String, String, Int32, Int32, Int32, Int32, String, String, String, DateTime) |
This constructor which allows a timestamp to be set |
ExtendedBuildWarningEventArgs(String, String, String, String, Int32, Int32, Int32, Int32, String, String, String, DateTime, Object[]) |
This constructor which allows a timestamp to be set |
ExtendedBuildWarningEventArgs(String, String, String, String, Int32, Int32, Int32, Int32, String, String, String, String, DateTime, Object[]) |
This constructor which allows a timestamp to be set |
Fields
locker |
Lock object. (Inherited from LazyFormattedBuildEventArgs) |
Properties
BuildEventContext |
Event contextual information for the build event argument (Inherited from BuildEventArgs) |
Code |
Code associated with event. (Inherited from BuildWarningEventArgs) |
ColumnNumber |
Column number of interest in associated file. (Inherited from BuildWarningEventArgs) |
EndColumnNumber |
Ending column number of interest in associated file. (Inherited from BuildWarningEventArgs) |
EndLineNumber |
Ending line number of interest in associated file. (Inherited from BuildWarningEventArgs) |
ExtendedData |
Transparent data as string. Custom code is responsible to serialize and deserialize this string to structured data - if needed. Custom code can use any serialization they deem safe - e.g. json for textual data, base64 for binary data... |
ExtendedMetadata |
Metadata of ExtendedData. Example usage:
|
ExtendedType |
Unique string identifying type of extended data so receiver side knows how to interpret, deserialize and handle ExtendedData. |
File |
File associated with event. (Inherited from BuildWarningEventArgs) |
HelpKeyword |
Custom help keyword associated with event. (Inherited from BuildEventArgs) |
HelpLink |
A link pointing to more information about the warning. (Inherited from BuildWarningEventArgs) |
LineNumber |
Line number of interest in associated file. (Inherited from BuildWarningEventArgs) |
Message |
Gets the formatted message. (Inherited from LazyFormattedBuildEventArgs) |
ProjectFile |
The project which was building when the message was issued. (Inherited from BuildWarningEventArgs) |
RawMessage |
Exposes the underlying message field without side-effects. Used for serialization. (Inherited from BuildEventArgs) |
RawTimestamp |
Exposes the private timestamp field to derived types. Used for serialization. Avoids the side effects of calling the Timestamp getter. (Inherited from BuildEventArgs) |
SenderName |
Name of the object sending this event. (Inherited from BuildEventArgs) |
Subcategory |
The custom sub-type of the event. (Inherited from BuildWarningEventArgs) |
ThreadId |
The thread that raised event. (Inherited from BuildEventArgs) |
Timestamp |
The time when event was raised. (Inherited from BuildEventArgs) |