InformationNodeConverters.GetConfigurationSummary Method (IBuildDetail, String, String)
Gets a configuration summary from the specified build.
Namespace: Microsoft.TeamFoundation.Build.Client
Assembly: Microsoft.TeamFoundation.Build.Client (in Microsoft.TeamFoundation.Build.Client.dll)
Syntax
'Декларация
Public Shared Function GetConfigurationSummary ( _
build As IBuildDetail, _
flavor As String, _
platform As String _
) As IConfigurationSummary
public static IConfigurationSummary GetConfigurationSummary(
IBuildDetail build,
string flavor,
string platform
)
public:
static IConfigurationSummary^ GetConfigurationSummary(
IBuildDetail^ build,
String^ flavor,
String^ platform
)
static member GetConfigurationSummary :
build:IBuildDetail *
flavor:string *
platform:string -> IConfigurationSummary
public static function GetConfigurationSummary(
build : IBuildDetail,
flavor : String,
platform : String
) : IConfigurationSummary
Parameters
- build
Type: Microsoft.TeamFoundation.Build.Client.IBuildDetail
The build from which the configuration summary will be retrieved.
- flavor
Type: System.String
The flavor of the desired configuration.
- platform
Type: System.String
The platform of the desired configuration.
Return Value
Type: Microsoft.TeamFoundation.Build.Client.IConfigurationSummary
The configuration summary, or null if none was found for the given platform and flavor.
Remarks
Flavor will be a string such as "Debug" or "Release". Platform will be a string such as "Any CPU" or "x86".
.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.
See Also
Reference
InformationNodeConverters Class