Click or drag to resize

CacheFactoryGetService Method

.NET API Reference for Oracle® Coherence Community Edition
(14.1.1.0)
E55634-01
Return an instance of a service configured by the current ConfigurableCacheFactory.

Namespace:  Tangosol.Net
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.1 (14.1.1.1)
Syntax
C#
public static IService GetService(
	string name
)

Parameters

name
Type: SystemString
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

Type: IService
The IService object.
Remarks
This helper method is a simple wrapper around the EnsureService(String) method.
See Also