FileIOPermissionAttribute.ViewAndModify Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the file or directory in which file data can be viewed and modified.
public:
property System::String ^ ViewAndModify { System::String ^ get(); void set(System::String ^ value); };
public string ViewAndModify { get; set; }
member this.ViewAndModify : string with get, set
Public Property ViewAndModify As String
Property Value
The absolute path of the file or directory in which file data can be viewed and modified.
Exceptions
The get
accessor is called. The accessor is provided only for C# compiler compatibility.
Remarks
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.
Note
The get
accessor is provided for C# compiler compatibility. The C# compiler requires attribute properties to be read/write.