ModulePageInfo.LongDescription Property

Definition

Gets the long description associated with the page.

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

Property Value

The longDescription parameter passed to the ModulePageInfo constructor. The default is the empty string ("").

Examples

Trace.WriteLine("ModulePageInfo.LongDescription: " 
    + myModPgInfo.LongDescription);

Remarks

If the constructor used does not contain the longDescription parameter, System.String.Empty is returned.

The longDescription is displayed in Features View of IIS Manager when the module is selected.

Applies to