Describes an arbitrary block of Data which a group chat application may define for storing user preferences and settings, or any other purpose.

Inheritance Hierarchy

System . . :: . . Object
   Microsoft.Rtc.Collaboration.GroupChat . . :: . . GroupChatPreferenceBundle

Namespace:  Microsoft.Rtc.Collaboration.GroupChat
Assembly:  Microsoft.Rtc.Collaboration.GroupChat(in Microsoft.Rtc.Collaboration.GroupChat.dll)

Syntax

Visual Basic (Declaration)
Public 
Class 
GroupChatPreferenceBundle
Visual Basic (Usage)
Dim 
instance 
As 
GroupChatPreferenceBundle
C#
public 
class 
GroupChatPreferenceBundle

Remarks

The group chat client uses a set of preference bundles to store client settings such as chat rooms joined, chat room display settings, and other customizations. The format of data stored in a preference bundle is application dependent.

Each preference bundle has a name (see Label ) and version number (see SequenceId ). When requesting preferences for a given Label through BeginGetPreferenceBundle(String, Int32, Boolean, AsyncCallback, Object) , the supplied SequenceId will be compared to the version stored on the server. If the supplied version is greater than or equal to the server version, no data will be returned. If the supplied version is less than the server version, a current version of the data will be returned.

Thread Safety

Any public static( Sharedin Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also