SessionSecurityTokenCache.RemoveAll Method

Definition

When implemented in a derived class, attempts to remove all of the entries associated with the specified identifiers.

Overloads

RemoveAll(String)

When implemented in a derived class, attempts to remove all entries with a matching endpoint ID from the cache.

RemoveAll(String, UniqueId)

When implemented in a derived class, attempts to remove all matching entries from the cache.

RemoveAll(String)

When implemented in a derived class, attempts to remove all entries with a matching endpoint ID from the cache.

public:
 abstract void RemoveAll(System::String ^ endpointId);
public abstract void RemoveAll (string endpointId);
abstract member RemoveAll : string -> unit
Public MustOverride Sub RemoveAll (endpointId As String)

Parameters

endpointId
String

The endpoint ID for which to remove entries.

Applies to

RemoveAll(String, UniqueId)

When implemented in a derived class, attempts to remove all matching entries from the cache.

public:
 abstract void RemoveAll(System::String ^ endpointId, System::Xml::UniqueId ^ contextId);
public abstract void RemoveAll (string endpointId, System.Xml.UniqueId contextId);
abstract member RemoveAll : string * System.Xml.UniqueId -> unit
Public MustOverride Sub RemoveAll (endpointId As String, contextId As UniqueId)

Parameters

endpointId
String

The endpoint ID for which to remove entries.

contextId
UniqueId

The context ID for which to remove entries.

Applies to