FormPropertyBag.AddinData Property
Retrieves optional add-in data from a custom add-in UI.
Namespace: Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners
Assembly: Microsoft.WindowsServerSolutions.Administration.ObjectModel (in Microsoft.WindowsServerSolutions.Administration.ObjectModel.dll)
Syntax
public ConcurrentDictionary<string, object> AddinData { get; private set; }
public:
property ConcurrentDictionary<String^, Object^>^ AddinData {
ConcurrentDictionary<String^, Object^>^ get();
private: void set(ConcurrentDictionary<String^, Object^>^ value);
}
Public Property AddinData As ConcurrentDictionary(Of String, Object)
Get
Private Set
End Property
Property Value
Type: System.Collections.Concurrent.ConcurrentDictionary<String, Object>
A ConcurrentDictionary<TKey, TValue> containing add-in UI data.
Remarks
A hosted email add-in can use this field to pass data between different add-in UI pages.
See Also
FormPropertyBag Class
Microsoft.WindowsServerSolutions.Administration.ObjectModel.Adorners Namespace
Return to top