Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PermissionSet::IsReadOnly Property

 

Gets a value indicating whether the collection is read-only.

Namespace:   System.Security
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool IsReadOnly {
	virtual bool get();
}

Property Value

Type: System::Boolean

Always false.

A PermissionSet cannot be read-only, so this property is always false.

The following code example shows the value returned by the IsReadOnly property. This code example is part of a larger example provided for the PermissionSet class.

// Display the value of the IsReadOnly property.
Console::WriteLine( "IsReadOnly property = {0}", ps1->IsReadOnly );

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft