ProviderFeature.FeatureName Property

Definition

When overridden in a derived class, gets the name of the feature for the provider.

public:
 abstract property System::String ^ FeatureName { System::String ^ get(); };
public abstract string FeatureName { get; }
member this.FeatureName : string
Public MustOverride ReadOnly Property FeatureName As String

Property Value

The feature name for the provider.

Examples

The following example sets the provider name on the Providers page in IIS Manager. This code example is part of a larger example provided for the ProviderFeature class.

// The name that will show up in drop down on "Providers" page.
public override string  FeatureName
{
    get { return ".NET Site Map"; }
}

Remarks

The FeatureName property value is the name that will appear in the Feature drop-down box on the Providers page in IIS Manager.

Applies to