Attempts to retrieve all entries from the cache.
Namespace: Microsoft.IdentityModel.Tokens
Assembly: Microsoft.IdentityModel (in microsoft.identitymodel.dll)

Usage

Visual Basic
Dim instance As SecurityTokenCache
Dim key As Object
Dim tokens As IList(Of SecurityToken)
Dim returnValue As Boolean

returnValue = instance.TryGetAllEntries(key, tokens)

Syntax

Visual Basic
Public MustOverride Function TryGetAllEntries ( _
		key As Object, _
		<OutAttribute> ByRef tokens As IList(Of SecurityToken) _
) As Boolean
C#
public abstract bool TryGetAllEntries (
		Object key,
		out IList<SecurityToken> tokens
)
C++
public:
virtual bool TryGetAllEntries (
		Object^ key, 
		[OutAttribute] IList<SecurityToken^>^% tokens
) abstract
J#
public abstract boolean TryGetAllEntries (
		Object key, 
		/** @attribute OutAttribute() */ /** @ref */ IList<SecurityToken> tokens
)
JScript

Parameters

key

The key of the entry to be retrieved.

tokens

Return Value

True on success. False on failure.

Exceptions

Exception type Condition

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2008, Windows Vista, Not tested on Windows XP

See Also