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!

NamedPermissionSet.Name

Name of the named permission set.

[Visual Basic]
Public Property Name As String
[C#]
public string Name {get; set;}
[C++]
public: __property String* get_Name();
public: __property void set_Name(String*);
[JScript]
public function get Name() : String;
public function set Name(String);

Property Value

Name of the named permission set.

Exceptions

Exception Type Condition
ArgumentException if name string is not a valid name (such as null or empty string).

Remarks

Code groups refer to permissions by name.

Example [C#]

[C#]

namedpset = new NamedPermissionSet ("none");
namedpset.Name = "Empty";    // change name of permission set to "Empty"

See Also

NamedPermissionSet Class | NamedPermissionSet Members | System.Security Namespace