RestApiAuthMgrWinforms Constructor |
Constructor
Namespace: Rally.RestApi.UiForWinformsAssembly: Rally.RestApi.UiForWinforms (in Rally.RestApi.UiForWinforms.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public RestApiAuthMgrWinforms(
string applicationToken,
string encryptionKey,
IEncryptionRoutines encryptionRoutines,
string webServiceVersion = "v2.0"
)
Public Sub New (
applicationToken As String,
encryptionKey As String,
encryptionRoutines As IEncryptionRoutines,
Optional webServiceVersion As String = "v2.0"
)
public:
RestApiAuthMgrWinforms(
String^ applicationToken,
String^ encryptionKey,
IEncryptionRoutines^ encryptionRoutines,
String^ webServiceVersion = L"v2.0"
)
new :
applicationToken : string *
encryptionKey : string *
encryptionRoutines : IEncryptionRoutines *
?webServiceVersion : string
(* Defaults:
let _webServiceVersion = defaultArg webServiceVersion "v2.0"
*)
-> RestApiAuthMgrWinforms
Parameters
- applicationToken
- Type: SystemString
An application token to be used as the file name to store data as. Each
consuming application should use a unique name in order to ensure that the user credentials are not
overwritten by other applications. - encryptionKey
- Type: SystemString
The encryption key, or salt, to be used for any encryption routines. This salt
should be different for each user, and not the same for everyone consuming the same application. Only used
for UI support. - encryptionRoutines
- Type: Rally.RestApi.AuthIEncryptionRoutines
The encryption routines to use for encryption/decryption of data. Only used for UI support. - webServiceVersion (Optional)
- Type: SystemString
The version of the WSAPI API to use.
See Also