Click or drag to resize
RegionUnregisterRegex Method
Unregister interest for the keys of the region that match the given regular expression to stop getting updates for them. The regular expression must have been registered previously using a RegisterRegex call. Valid only for a Native Client region when client notification ( [!:AttributesFactory.SetClientNotificationEnabled] ) is true.

Namespace: GemStone.GemFire.Cache
Assembly: Gemstone.Gemfire.Cache (in Gemstone.Gemfire.Cache.dll) Version: 9.0.6.18
Syntax
public void UnregisterRegex(
	string regex
)

Parameters

regex
Type: SystemString
Exceptions
ExceptionCondition
IllegalArgumentException If the regular expression string is empty.
IllegalStateException If this regular expression has not been registered by a previous call to RegisterRegex.
CacheServerException If an exception is received from the Java cache server.
NotConnectedException if not connected to the GemFire system because the client cannot establish usable connections to any of the servers given to it. For pools configured with locators, if no locators are available, innerException of NotConnectedException is set to NoAvailableLocatorsException.
RegionDestroyedException If region destroy is pending.
UnsupportedOperationException If the region is not a Native Client region or [!:AttributesFactory.SetClientNotificationEnabled] is false.
TimeoutException if the operation timed out
UnknownExceptionFor other exceptions.
See Also