Property | Type | Description | |
---|---|---|---|
BackUpFiles | void | ||
WorkaroundCygwinBug | void |
Method | Description | |
---|---|---|
Clone ( ) : object |
Create a deep copy of the SessionData object
|
|
CombineSessionIds ( string parent, string child ) : string | ||
CompareTo ( object obj ) : int | ||
GetSessionNameFromId ( string sessionId ) : string | ||
GetSessionNameParts ( string sessionId ) : string[] |
Split the SessionID into its parent/child parts
|
|
GetSessionParentId ( string sessionId ) : string |
Get the parent ID of the specified session
|
|
LoadSessionsFromFile ( string fileName ) : List |
Load session configuration data from the specified XML file
|
|
LoadSessionsFromRegistry ( ) : List |
Read any existing saved sessions from the registry, decode and populate a list containing the data
|
|
SaveSessionsToFile ( List |
Save session configuration to the specified XML file
|
|
SessionData ( ) : System |
Default constructor, instantiate a new SessionData object
|
|
SessionData ( string sessionName, string hostName, int port, ConnectionProtocol protocol, string sessionConfig ) : System |
Construct a new session data object
|
|
ToString ( ) : string |
Return a string containing a uri to the protocol://host:port of this sesssions defined host
|
Method | Description | |
---|---|---|
BackUpFiles ( string fileName, int count ) : void | ||
WorkaroundCygwinBug ( ) : void |
public static CombineSessionIds ( string parent, string child ) : string | ||
parent | string | |
child | string | |
return | string |
public static GetSessionNameFromId ( string sessionId ) : string | ||
sessionId | string | |
return | string |
public static GetSessionNameParts ( string sessionId ) : string[] | ||
sessionId | string | The SessionID |
return | string[] |
public static GetSessionParentId ( string sessionId ) : string | ||
sessionId | string | the ID of the session |
return | string |
public static LoadSessionsFromFile ( string fileName ) : List |
||
fileName | string | The filename containing the settings |
return | List |
public static LoadSessionsFromRegistry ( ) : List |
||
return | List |
public static SaveSessionsToFile ( List |
||
sessions | List |
A |
fileName | string | A path to a filename to save the data in |
return | void |
public SessionData ( string sessionName, string hostName, int port, ConnectionProtocol protocol, string sessionConfig ) : System | ||
sessionName | string | A string representing the name of the session |
hostName | string | The hostname or ip address of the remote host |
port | int | The port on the remote host |
protocol | ConnectionProtocol | The protocol to use when connecting to the remote host |
sessionConfig | string | the name of the saved configuration settings from putty to use |
return | System |