FileIOPermissionAttribute::ViewAndModify Property

 

Gets or sets the file or directory in which file data can be viewed and modified.

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

public:
property String^ ViewAndModify {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The absolute path of the file or directory in which file data can be viewed and modified.

Exception Condition
NotSupportedException

The get accessor is called. The accessor is provided only for C# compiler compatibility.

This property sets the Append, PathDiscovery, Read, and Write properties for a single file or directory. Use additional FileIOPermissionAttribute attributes to specify additional files and directories. The access rights are for file data only; they do not include the access control properties ViewAccessControl and ChangeAccessControl.

System_CAPS_noteNote

The get accessor is provided for C# compiler compatibility. The C# compiler requires attribute properties to be read/write.

.NET Framework
Available since 2.0
Return to top
Show: