Connection Calls
NaeSession
This class represents a single session to a NAE Server. It is used by other NAE classes to send data to and retrieve data from the server.
Constructors
Constructor | Description |
---|---|
NaeSession(string username, string password, string propFilePath); | Creates a new session and authenticates as the username provided. Properties for this session are taken from the file specified. |
NaeSession(string propFilePath) | Creates a new global NAE session. Properties for this session are taken from the file specified. |
NaeSession naeSession = new NaeSession(string username, string password, string passphrase, string propFilePath); | Creates an NAE session using passphrase to perform crypto operations. |