NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

SecurityElement.Attributes

A dictionary object holds the attributes of an XML element as key/value pairs.

[Visual Basic]
Public Property Attributes As Dictionary
[C#]
public Dictionary Attributes {get; set;}
[C++]
public: __property Dictionary* get_Attributes();
public: __property void set_Attributes(Dictionary*);
[JScript]
public function get Attributes() : Dictionary;
public function set Attributes(Dictionary);

Property Value

The dictionary object for the attribute values of the XML element.

Each attribute is stored in the dictionary as a name/value pair.

Remarks

Names and values in attributes should only contain valid XML attribute characters.

There is no support for quoted strings so strings for name/value pairs should not contain quotes or other characters that would require quoting.

See Also

SecurityElement Class | SecurityElement Members | System.Security Namespace