Share via


IRunConfigurationCustomHostEditor.HostType Property

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

See Also

Reference

IRunConfigurationCustomHostEditor Interface

IRunConfigurationCustomHostEditor Members

Microsoft.VisualStudio.TestTools.Vsip Namespace