XML document containing any settings for this user and application.

Namespace:  T4.API
Assembly:  T4API.20 (in T4API.20.dll)

Syntax

C#
public XmlDocument UserSettings { get; set; }
Visual Basic (Declaration)
Public Property UserSettings As XmlDocument
Visual C++
public:
property XmlDocument^ UserSettings {
	XmlDocument^ get ();
	void set (XmlDocument^ value);
}

Field Value

Remarks

This is available for applications to store small amounts (<100kb) of user specific configuration information for that application. This is stored server side and is automatically retreived on login even if the user is logging in on a different PC.

Settings are saved using the SaveUserSettings method.

See Also