TagExtensionsHasAnyTag Method (ITaggable, String)

ScaleOut Software NamedCache API
Determines whether cachedObject has any of the tags specified in tags set.

Namespace:  Soss.Client
Assembly:  soss_namedcache (in soss_namedcache.dll) Version: 6.2.0.0
Syntax

public static bool HasAnyTag(
	this ITaggable cachedObject,
	params string[] tags
)

Parameters

cachedObject
Type: Soss.ClientITaggable
The cached object to check.
tags
Type: SystemString
The tags to look for.

Return Value

Type: Boolean
true if cachedObject has any of the tags specified by tags set; otherwise, false.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type ITaggable. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks

See Support for Tags for an overview of using this method and the use of the ITaggable interface.

This method may also be used in where-clause expressions for evaluation on the server. See Querying Tags for an overview of querying for specific tags within a LINQ where-clause.

See Also

Reference