Share via


ConfigurationModuleProvider.GetChildDelegationState(String) Method

Definition

When overridden in a derived class, returns the delegation state of the child node.

public:
 override Microsoft::Web::Management::Server::DelegationState ^ GetChildDelegationState(System::String ^ path);
public override Microsoft.Web.Management.Server.DelegationState GetChildDelegationState (string path);
override this.GetChildDelegationState : string -> Microsoft.Web.Management.Server.DelegationState
Public Overrides Function GetChildDelegationState (path As String) As DelegationState

Parameters

path
String

The path of the calling host.

Returns

The current DelegationState object of the module provider.

Exceptions

path is null or empty.

path is not preceded by a forward slash (/).

Remarks

Use this method to check the current delegation state of a module at a given path.

This method returns the DelegationState object of the module provider. The parent node sets the default delegation permissions for all its child nodes. The delegation for an individual child node overrides the default delegation for all child nodes. This enables the administrator to delegate a specific child node of the Web site.

If the configuration section for the module provider is read-only, the returned DelegationState is read-only.

Applies to

See also