Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Return an instance of a service configured by the current ConfigurableCacheFactory.

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public static IService GetService(
	string name
)

Parameters

name
Type: System..::.String
Service name (unique for a given configurable cache factory). If the IService with the specified name already exists, a reference to the same object will be returned.

Return Value

The IService object.

Remarks

This helper method is a simple wrapper around the EnsureService(String) method.

See Also