DataCacheItemVersion.GreaterThan Operator (DataCacheItemVersion, DataCacheItemVersion)
Indicates whether the first object is greater than the second object.
Namespace: Microsoft.ApplicationServer.Caching
Assembly: Microsoft.ApplicationServer.Caching.Core (in Microsoft.ApplicationServer.Caching.Core.dll)
Syntax
public static bool operator >(
DataCacheItemVersion left,
DataCacheItemVersion right
)
public:
static bool operator >(
DataCacheItemVersion^ left,
DataCacheItemVersion^ right
)
static let inline (>)
left:DataCacheItemVersion *
right:DataCacheItemVersion : bool
Public Shared Operator > (
left As DataCacheItemVersion,
right As DataCacheItemVersion
) As Boolean
Parameters
left
Type: Microsoft.ApplicationServer.Caching.DataCacheItemVersionThe first object to compare.
right
Type: Microsoft.ApplicationServer.Caching.DataCacheItemVersionThe second object to compare.
Return Value
Type: System.Boolean
True if the first object is greater than the second object; otherwise, false.
See Also
DataCacheItemVersion Class
Microsoft.ApplicationServer.Caching Namespace
Return to top