InformationNodeConverters.AddBuildWarning Method (IBuildInformation, String, String, Int32, Int32, String, String, DateTime, String)
Adds a warning to the specified build information object. Does not save to the server.
Namespace: Microsoft.TeamFoundation.Build.Client
Assembly: Microsoft.TeamFoundation.Build.Client (in Microsoft.TeamFoundation.Build.Client.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function AddBuildWarning ( _
buildInformation As IBuildInformation, _
file As String, _
serverPath As String, _
lineNumber As Integer, _
endLineNumber As Integer, _
code As String, _
message As String, _
timestamp As DateTime, _
warningType As String _
) As IBuildWarning
public static IBuildWarning AddBuildWarning(
this IBuildInformation buildInformation,
string file,
string serverPath,
int lineNumber,
int endLineNumber,
string code,
string message,
DateTime timestamp,
string warningType
)
[ExtensionAttribute]
public:
static IBuildWarning^ AddBuildWarning(
IBuildInformation^ buildInformation,
String^ file,
String^ serverPath,
int lineNumber,
int endLineNumber,
String^ code,
String^ message,
DateTime timestamp,
String^ warningType
)
static member AddBuildWarning :
buildInformation:IBuildInformation *
file:string *
serverPath:string *
lineNumber:int *
endLineNumber:int *
code:string *
message:string *
timestamp:DateTime *
warningType:string -> IBuildWarning
public static function AddBuildWarning(
buildInformation : IBuildInformation,
file : String,
serverPath : String,
lineNumber : int,
endLineNumber : int,
code : String,
message : String,
timestamp : DateTime,
warningType : String
) : IBuildWarning
Parameters
buildInformation
Type: Microsoft.TeamFoundation.Build.Client.IBuildInformationThe build information to which the warning will be added.
file
Type: System.StringThe file in which the warning occurred.
serverPath
Type: System.StringThe server path in version control for the file.
lineNumber
Type: System.Int32The line number on which the warning began.
endLineNumber
Type: System.Int32The line number on which the warning ended.
code
Type: System.StringThe warning code.
message
Type: System.StringThe warning message.
timestamp
Type: System.DateTimeThe time of the warning.
warningType
Type: System.StringThe type of the warning.
Return Value
Type: Microsoft.TeamFoundation.Build.Client.IBuildWarning
The warning node.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type IBuildInformation. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.