You are currently browsing legacy 4.0 version of documentation. Click here to switch to the newest 5.1 version.
Operations: How to Put Server-Wide Client Configuration
PutServerWideClientConfigurationOperation is used to save server-wide client configuration on the server. It allows you to override the client's settings remotely.
Note
ClientConfiguration
defined at database level overrides the server-wide client configuration.
Syntax
public PutClientConfigurationOperation(ClientConfiguration configuration)
Example
ClientConfiguration clientConfiguration = new ClientConfiguration
{
MaxNumberOfRequestsPerSession = 100,
ReadBalanceBehavior = ReadBalanceBehavior.FastestNode
};
store.Maintenance.Send(new PutClientConfigurationOperation(clientConfiguration));