Shared Cache is high performance distributed and replication cache system built for .Net applications running in server farms.
Returns items from cache node based on provided pattern.

Namespace:  SharedCache.WinServiceCommon.Provider.Cache
Assembly:  SharedCache.WinServiceCommon (in SharedCache.WinServiceCommon.dll) Version: 3.0.5.1 (3.0.5.1)

Syntax

C#
public abstract IDictionary<string, byte[]> DataContractRegexGet(
	string regularExpression
)
Visual Basic (Declaration)
Public MustOverride Function DataContractRegexGet ( _
	regularExpression As String _
) As IDictionary(Of String, Byte())
Visual C++
public:
virtual IDictionary<String^, array<unsigned char>^>^ DataContractRegexGet(
	String^ regularExpression
) abstract

Parameters

regularExpression
Type: System..::.String
The regular expression.

Return Value

An IDictionary with String and Byte array with all founded elementes

Remarks

Data need to be added to cache over DataContractAdd() methods otherwise the application throws an exception.

See Also