Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / QueryCache / QueryCacheKey.cs / 1305376 / QueryCacheKey.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- namespace System.Data.Common.QueryCache { using System; using System.Collections.Generic; using System.Text; ////// represents an abstract cache key /// internal abstract class QueryCacheKey { #region Constants protected const int EstimatedParameterStringSize = 20; #endregion #region Fields ////// entry hit counter /// private uint _hitCount; ////// aging index /// private int _agingIndex; ////// default string comparison kind - Ordinal /// protected static StringComparison _stringComparison = StringComparison.Ordinal; #endregion #region Constructor protected QueryCacheKey() { _hitCount = 1; } #endregion #region Abstract Methods ////// Determines whether two instances of QueryCacheContext are equal. /// Equality is value based. /// /// ///public abstract override bool Equals( object obj ); /// /// Returns QueryCacheContext instance HashCode /// ///public abstract override int GetHashCode(); #endregion #region Internal API /// /// Cache entry hit count /// internal uint HitCount { get { return _hitCount; } set { _hitCount = value; } } ////// Gets/Sets Aging index for cache entry /// internal int AgingIndex { get { return _agingIndex; } set { _agingIndex = value; } } ////// Updates hit count /// internal void UpdateHit() { if (uint.MaxValue != _hitCount) { unchecked { _hitCount++; } } } ////// default string comparer /// /// /// ///protected virtual bool Equals( string s, string t ) { return String.Equals(s, t, _stringComparison); } #endregion } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SecurityResources.cs
- SingleStorage.cs
- ListControl.cs
- RegexMatch.cs
- StatusBarAutomationPeer.cs
- PtsContext.cs
- CanExecuteRoutedEventArgs.cs
- FullTextBreakpoint.cs
- MediaSystem.cs
- SystemNetworkInterface.cs
- AutomationPropertyInfo.cs
- ApplicationGesture.cs
- TemplateKey.cs
- TriggerCollection.cs
- TemplateAction.cs
- Menu.cs
- CircleEase.cs
- EraserBehavior.cs
- Propagator.Evaluator.cs
- DeviceSpecificChoice.cs
- WebPartRestoreVerb.cs
- BooleanFunctions.cs
- TypeElement.cs
- VerificationAttribute.cs
- XmlBinaryWriterSession.cs
- DrawingContextWalker.cs
- NumericUpDownAcceleration.cs
- TimeStampChecker.cs
- DrawItemEvent.cs
- SqlRemoveConstantOrderBy.cs
- CacheDependency.cs
- ScriptServiceAttribute.cs
- FrameDimension.cs
- SqlDataSourceStatusEventArgs.cs
- Buffer.cs
- MDIClient.cs
- PageAsyncTaskManager.cs
- MsdtcWrapper.cs
- ACL.cs
- ByteStreamMessageEncoderFactory.cs
- TableSectionStyle.cs
- ThreadInterruptedException.cs
- PasswordDeriveBytes.cs
- metadatamappinghashervisitor.cs
- UpdateRecord.cs
- PerfCounters.cs
- RtfFormatStack.cs
- SmtpSection.cs
- BuildDependencySet.cs
- ServiceEndpointElementCollection.cs
- AssemblyAttributesGoHere.cs
- CodeChecksumPragma.cs
- SafeBuffer.cs
- ContractHandle.cs
- Select.cs
- Authorization.cs
- Label.cs
- HitTestResult.cs
- SqlExpander.cs
- SchemaTypeEmitter.cs
- TypeDelegator.cs
- TypedServiceOperationListItem.cs
- ProcessThreadCollection.cs
- FrameworkElement.cs
- InheritanceService.cs
- CompilerState.cs
- DbConvert.cs
- DictionaryItemsCollection.cs
- AppDomainProtocolHandler.cs
- XmlArrayItemAttributes.cs
- Geometry.cs
- MetaModel.cs
- UnsafeNativeMethods.cs
- CodeAccessSecurityEngine.cs
- SqlColumnizer.cs
- ListViewItem.cs
- PrimitiveType.cs
- Permission.cs
- TagPrefixAttribute.cs
- XamlTreeBuilder.cs
- DoubleCollectionConverter.cs
- PermissionSet.cs
- OleDbConnectionInternal.cs
- CompModSwitches.cs
- DependencyProperty.cs
- SQLInt32.cs
- MetadataException.cs
- ToolboxItem.cs
- isolationinterop.cs
- UIInitializationException.cs
- TextStore.cs
- SiteIdentityPermission.cs
- SetterBaseCollection.cs
- CredentialCache.cs
- GridViewRowCollection.cs
- PartialCachingAttribute.cs
- SwitchCase.cs
- AccessViolationException.cs
- InputBinder.cs
- DynamicFilterExpression.cs