Skip to main content

Commands: How to switch commands credentials?

By default, commands available directly in store are working with credentials that were set up for that store. To use different credentials for commands use With method.

Syntax

IDatabaseCommands With(ICredentials credentialsForSession);
Parameters
credentialsForSessionICredentialscredentials that should be used by new commands
Return Value
IDatabaseCommandsNew instance of commands that will use given credentials.

Example

IDatabaseCommands commands = store
.DatabaseCommands
.With(new NetworkCredential("otherUserName", "otherPassword"));