InformationNodeConverters.AddBuildStep Method (IBuildDetail, String, String, DateTime)

Adds a top-level build step to the specified build. Saves to the server.

Namespace:  Microsoft.TeamFoundation.Build.Client
Assembly:  Microsoft.TeamFoundation.Build.Client (in Microsoft.TeamFoundation.Build.Client.dll)

Syntax

'Declaration
Public Shared Function AddBuildStep ( _
    build As IBuildDetail, _
    name As String, _
    message As String, _
    startTime As DateTime _
) As IBuildStep
public static IBuildStep AddBuildStep(
    IBuildDetail build,
    string name,
    string message,
    DateTime startTime
)
public:
static IBuildStep^ AddBuildStep(
    IBuildDetail^ build, 
    String^ name, 
    String^ message, 
    DateTime startTime
)
static member AddBuildStep : 
        build:IBuildDetail * 
        name:string * 
        message:string * 
        startTime:DateTime -> IBuildStep 
public static function AddBuildStep(
    build : IBuildDetail, 
    name : String, 
    message : String, 
    startTime : DateTime
) : IBuildStep

Parameters

  • name
    Type: System.String
    The name of the build step to be added.
  • message
    Type: System.String
    The message of the build step to be added.
  • startTime
    Type: System.DateTime
    The start time of the build step to be added.

Return Value

Type: Microsoft.TeamFoundation.Build.Client.IBuildStep
The added build step instance.

Remarks

Note that build steps are no longer used after Visual Studio Team System 2008 Team Foundation Server and have been replaced with various new information node types, including IBuildMessage, IBuildError, IBuildWarning, and IActivityTracking. As such, when adding information nodes to builds which will primarily be viewed from newer clients (for example, Team Foundation Server 2010), these new types are preferable to IBuildSteps.

.NET Framework Security

See Also

Reference

InformationNodeConverters Class

AddBuildStep Overload

Microsoft.TeamFoundation.Build.Client Namespace