Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ // // 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
- AppSettingsSection.cs
- GcSettings.cs
- HitTestResult.cs
- MailFileEditor.cs
- CodeBlockBuilder.cs
- StringValidatorAttribute.cs
- SHA256Managed.cs
- ClassHandlersStore.cs
- Mutex.cs
- BinaryReader.cs
- IPPacketInformation.cs
- DataRowChangeEvent.cs
- Exceptions.cs
- OleDbWrapper.cs
- CallInfo.cs
- CookieParameter.cs
- DataGridViewRowsRemovedEventArgs.cs
- DisposableCollectionWrapper.cs
- FormViewPagerRow.cs
- TypeHelpers.cs
- TabControlAutomationPeer.cs
- PanelStyle.cs
- TrackBarRenderer.cs
- HandlerFactoryCache.cs
- BorderGapMaskConverter.cs
- DBConnection.cs
- ObjectConverter.cs
- XmlSchemaAnnotated.cs
- OraclePermissionAttribute.cs
- PackageRelationshipSelector.cs
- GridViewCommandEventArgs.cs
- XPathNode.cs
- QilParameter.cs
- manifestimages.cs
- BuilderInfo.cs
- ContainerUtilities.cs
- ValidationResults.cs
- DesignSurfaceEvent.cs
- XmlSchemaProviderAttribute.cs
- GraphicsContext.cs
- SequenceDesignerAccessibleObject.cs
- JpegBitmapEncoder.cs
- KnowledgeBase.cs
- Tuple.cs
- DataGridViewUtilities.cs
- DiscoveryClientElement.cs
- ThreadExceptionDialog.cs
- Variable.cs
- ColorContext.cs
- RefreshPropertiesAttribute.cs
- DataGridViewColumnCollectionDialog.cs
- ClientRoleProvider.cs
- LabelLiteral.cs
- ControlPaint.cs
- ValueConversionAttribute.cs
- AuthenticodeSignatureInformation.cs
- LoadGrammarCompletedEventArgs.cs
- DocumentSchemaValidator.cs
- DataGridSortCommandEventArgs.cs
- GeneratedView.cs
- TabItemWrapperAutomationPeer.cs
- WindowsSolidBrush.cs
- TypeNameParser.cs
- HwndStylusInputProvider.cs
- DodSequenceMerge.cs
- TdsValueSetter.cs
- PropertyEmitter.cs
- SqlIdentifier.cs
- MediaContext.cs
- Automation.cs
- InputLangChangeRequestEvent.cs
- PrivacyNoticeElement.cs
- AttributeAction.cs
- D3DImage.cs
- DoWorkEventArgs.cs
- IxmlLineInfo.cs
- PointAnimationClockResource.cs
- HttpWebRequestElement.cs
- TimeoutStream.cs
- HtmlTitle.cs
- CachedPathData.cs
- Rectangle.cs
- TypeRestriction.cs
- JsonSerializer.cs
- ActiveXHost.cs
- KoreanLunisolarCalendar.cs
- StatusStrip.cs
- MsmqOutputSessionChannel.cs
- WebUtility.cs
- FullTextBreakpoint.cs
- PieceDirectory.cs
- ReflectTypeDescriptionProvider.cs
- ListMarkerLine.cs
- Trace.cs
- HttpResponse.cs
- CompositeScriptReference.cs
- LinkedResource.cs
- DeploymentSection.cs
- WindowsRichEdit.cs
- XslNumber.cs