Creates a new file server user with the specified password, their virtual filesystem based at the specified path, and initial path in the virtual filesystem.
Namespace:
Rebex.Net.Servers
Assembly:
Rebex.FileServer (in Rebex.FileServer.dll)
Syntax
Visual Basic |
---|
Public Sub New ( _ userName As String, _ password As String, _ virtualRootPath As String, _ initialVirtualPath As String _ ) |
C# |
---|
public FileServerUser( string userName, string password, string virtualRootPath, string initialVirtualPath ) |
Parameters
- userName
- Type: System..::..String
User name.
- password
- Type: System..::..String
Password.
- virtualRootPath
- Type: System..::..String
The placement of the virtual root of the user.
- initialVirtualPath
- Type: System..::..String
The initial path (i.e. home directory) of the user within the virtual file system.
Remarks
The password is one-way transformed to a SHA-256 hash with a random salt value.