ModulePageInfo.LongDescription Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.