FileIOPermissionAttribute::Read Property

 

Gets or sets read access for the file or directory specified by the string value.

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

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

Property Value

Type: System::String^

The absolute path of the file or directory for read access.

This property sets access for a single file or directory. Use additional attributes to specify additional files and directories.

The following example sets the Read property to grant Read access to files in the specified directory.

// Set the Read property.
[FileIOPermissionAttribute(SecurityAction::PermitOnly,Read="C:\\")]

.NET Framework
Available since 1.1
Return to top
Show: