Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates a new instance of the FormContentAdorner class using the specified ID, display name, and description.
Namespace:   Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners
Assembly:  Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
protected FormContentAdorner(
    Guid id,
    string displayName,
    string description
)
protected:
FormContentAdorner(
    Guid id,
    String^ displayName,
    String^ description
)
Protected Sub New (
    id As Guid,
    displayName As String,
    description As String
)
Parameters
- id 
 Type: System.Guid- Unique ID for the adorner. 
- displayName 
 Type: System.String- Display name of the adorner. 
- description 
 Type: System.String- A brief description of the adorner. 
Examples
The following code describes how to derive and implement the constructor. For the complete code sample, see Quickstart: Creating a Hosted Email Adapter.
public class DistributionGroupAdorner : FormContentAdorner, IHostedEmailExtension
    {
        private DistributionGroupTabContent content = null;
        public DistributionGroupAdorner()
            : base(new Guid("B00F3F8D-176B-4A85-A1C9-3022A6E5B9BC"), Resources.DGAdorner_Name, Resources.DGAdorner_Des)
        {
        }
    }
See Also
FormContentAdorner Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners Namespace
Return to top