Table of Contents

Method Connect

Namespace
Scaleout.Client
Assembly
Scaleout.Client.dll

Connect(string)

Connects to a ScaleOut in-memory data grid, returning a GridConnection instance that can be used with a CacheBuilder<TKey, TValue> to access objects in the ScaleOut service.

public static GridConnection Connect(string connectionString)

Parameters

connectionString string

String containing parameters for connecting to ScaleOut host(s).

Returns

GridConnection

A GridConnection instance.

See Also

Connect(string, BootstrapGatewayProvider)

Connects to a ScaleOut in-memory data grid, returning a GridConnection instance that can be used with a CacheBuilder<TKey, TValue> to access objects in the ScaleOut service.

public static GridConnection Connect(string connectionString, BootstrapGatewayProvider bootstrapGatewayProvider)

Parameters

connectionString string

String containing parameters for connecting to ScaleOut host(s).

bootstrapGatewayProvider BootstrapGatewayProvider

A bootstrap gateway provider that can be used to find ScaleOut hosts running in cloud environment.

Returns

GridConnection

A GridConnection instance.

See Also