Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets a value that indicates the name of the host.
Namespace: Microsoft.VisualStudio.TestTools.Vsip
Assembly: Microsoft.VisualStudio.QualityTools.Vsip (in Microsoft.VisualStudio.QualityTools.Vsip.dll)
Syntax
'Declaration
ReadOnly Property HostType As String
'Usage
Dim instance As IRunConfigurationCustomHostEditor
Dim value As String
value = instance.HostType
string HostType { get; }
property String^ HostType {
String^ get ();
}
function get HostType () : String
Property Value
Type: System.String
The String that contains the name of the host.
Remarks
This string will be displayed in the Host type list box on the Hosts page of the test run configuration editor.
Examples
/// <summary>
/// The host adapter type that this editor is used for.
/// </summary>
string IRunConfigurationCustomHostEditor.HostType
{
get
{
return MyHostAdapter.Name;
}
}
.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
IRunConfigurationCustomHostEditor Interface