Specifies the type of configuration path that is selected.
Namespace:
Microsoft.Web.Management.Server
Assembly:
Microsoft.Web.Management (in Microsoft.Web.Management.dll)
Visual Basic (Declaration)
Public Enumeration ConfigurationPathType
Dim instance As ConfigurationPathType
public enum ConfigurationPathType
public enum class ConfigurationPathType
public enum ConfigurationPathType
| Member name | Description |
|---|
| Server | A server. |
| Site | A site. |
| Application | An application. |
| Folder | An application folder. |
| File | A file in an application. |
You can use the enumeration values to determine the type of connection that is indicated by the selected configuration path type. You can access the enumeration values from the PathType property.
The following example obtains the ConfigurationPathType enumeration value for the selected object in the Connection pane.
'' Called when an object in the hierarchy pane is activated.
Protected Overrides Sub OnActivated(ByVal initialActivation As Boolean)
MyBase.OnActivated(initialActivation)
If initialActivation Then
Me._serviceProxy = DirectCast(MyBase.Connection.CreateProxy(MyBase.Module, GetType(DemoModuleServiceProxy)), DemoModuleServiceProxy)
'' Display the Configuration Path Type enumertion.
MessageBox.Show(("The selected object in the hierarchy pane is a " & MyBase.Connection.ConfigurationPath.PathType))
Me.Refresh()
End If
End Sub
// Called when an object in the hierarchy pane is activated.
protected override void OnActivated(bool initialActivation)
{
base.OnActivated(initialActivation);
if (initialActivation)
{
_serviceProxy = (DemoModuleServiceProxy)Connection.CreateProxy(
Module, typeof(DemoModuleServiceProxy));
// Display the Configuration Path Type enumertion.
MessageBox.Show("The selected object in the hierarchy pane is a " +
Connection.ConfigurationPath.PathType);
Refresh();
}
}
Reference