FormPropertyBag Class
Used to pass data from built-in UI to an adorner.
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
System::MarshalByRefObject
Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners::FormPropertyBag
| Name | Description | |
|---|---|---|
![]() | CreateObjRef(Type^) | (Inherited from MarshalByRefObject.) |
![]() | Equals(Object^) | (Inherited from Object.) |
![]() | Finalize() | (Inherited from Object.) |
![]() | GetHashCode() | (Inherited from Object.) |
![]() | GetLifetimeService() | (Inherited from MarshalByRefObject.) |
![]() | GetType() | (Inherited from Object.) |
![]() | InitializeLifetimeService() | (Inherited from MarshalByRefObject.) |
![]() | MemberwiseClone() | (Inherited from Object.) |
![]() | MemberwiseClone(Boolean) | (Inherited from MarshalByRefObject.) |
![]() | ToString() | (Inherited from Object.) |
For more information on using this class, see Extending and Replacing the Email UI.
The following code describes using FormPropertyBag to pass data into an overridden CreatePage method. For the complete sample, see Quickstart: Creating a Hosted Email Adapter.
public override ICollection<AddinPageContent> CreatePages(FormPropertyBag propertyBag)
{
List<AddinPageContent> list = new List<AddinPageContent>();
content = new DistributionGroupTabContent(propertyBag)
{
Title = Resources.DGTab_Name,
HelpLink = null,
HelpLinkText = null
};
list.Add(content);
return list;
}
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


