Click or drag to resize

UnixPermissionSet Class

Represents Unix permissions.
Inheritance Hierarchy
SystemObject
  Limilabs.FTP.ClientUnixPermissionSet

Namespace: Limilabs.FTP.Client
Assembly: Ftp (in Ftp.dll) Version: 2.0.26109.1248
Syntax
public class UnixPermissionSet : IEquatable<UnixPermissionSet>

The UnixPermissionSet type exposes the following members.

Constructors
 NameDescription
Public methodUnixPermissionSet Creates new, empty UnixPermissions object.
Public methodUnixPermissionSet(UnixPermission) Creates new UnixPermissions object with OwnerUser, OwnerGroup and Others properties set to specified value.
Top
Properties
 NameDescription
Public propertyOthers Gets or sets permissions for other users/groups.
Public propertyOwnerGroup Gets or sets permissions for owning group.
Public propertyOwnerUser Gets or sets permissions for owning user.
Top
Methods
 NameDescription
Public methodEquals(Object) Determines whether the specified Object is equal to the current Object.
(Overrides ObjectEquals(Object))
Public methodEquals(UnixPermissionSet) Indicates whether the current object is equal to another object of the same type.
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCode Serves as a hash function for a particular type.
(Overrides ObjectGetHashCode)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodParseText Parses ls command style text ("rw-r--r--", "rw-rw-rw-", "rwxrwxrwx", "000").
Public methodToNumber Returns a number that represents this permission in CHMOD style (755, 666, 777, 0)
Public methodToNumberAsText Returns a number as string that represents this permission in CHMOD command style ("755", "666", "777", "000")
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Public methodToText Returns a string that represents this permission in ls command style ("rw-r--r--", "rw-rw-rw-", "rwxrwxrwx", "000")
Top
Operators
 NameDescription
Public operatorStatic memberEquality(UnixPermissionSet, UnixPermissionSet) Checks is two UnixPermissionSet objects are same.
Public operatorStatic memberInequality(UnixPermissionSet, UnixPermissionSet) Checks is two UnixPermissionSet objects are different.
Top
See Also