Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / DataEntity / System / Data / Common / QueryCache / CompiledQueryCacheKey.cs / 1305376 / CompiledQueryCacheKey.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // // // @owner [....] // @backupOwner [....] //----------------------------------------------------------------------------- namespace System.Data.Common.QueryCache { using System; using System.Diagnostics; internal sealed class CompiledQueryCacheKey : QueryCacheKey { private readonly Guid _cacheIdentity; internal CompiledQueryCacheKey(Guid cacheIdentity) { _cacheIdentity = cacheIdentity; } ////// Determines equality of this key with respect to /// ////// public override bool Equals(object compareTo) { Debug.Assert(compareTo != null, "Comparison key should not be null"); if (typeof(CompiledQueryCacheKey) != compareTo.GetType()) { return false; } return ((CompiledQueryCacheKey)compareTo)._cacheIdentity.Equals(this._cacheIdentity); } /// /// Returns the hashcode for this cache key /// ///public override int GetHashCode() { return _cacheIdentity.GetHashCode(); } /// /// Returns a string representation of the state of this cache key /// ////// A string representation that includes query text, parameter information, include path information /// and merge option information about this cache key. /// public override string ToString() { return _cacheIdentity.ToString(); } } } // 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
- DiscreteKeyFrames.cs
- ProfilePropertySettings.cs
- KeyboardNavigation.cs
- Matrix.cs
- XmlSchemaFacet.cs
- DataGridAutoGeneratingColumnEventArgs.cs
- ADMembershipProvider.cs
- DrawingServices.cs
- DataServiceExpressionVisitor.cs
- PrintPreviewControl.cs
- Baml2006SchemaContext.cs
- SqlExpander.cs
- SoapAttributes.cs
- ConstructorNeedsTagAttribute.cs
- AutomationProperties.cs
- ComNativeDescriptor.cs
- EditingMode.cs
- Buffer.cs
- InstanceDescriptor.cs
- ProcessProtocolHandler.cs
- WindowsTab.cs
- RepeaterItem.cs
- RegexNode.cs
- EntryWrittenEventArgs.cs
- CatalogZone.cs
- DeobfuscatingStream.cs
- RelationshipSet.cs
- HostedBindingBehavior.cs
- NumericExpr.cs
- FileRegion.cs
- AutomationPeer.cs
- ProxyGenerator.cs
- PageBreakRecord.cs
- WebPartTransformerCollection.cs
- CFStream.cs
- ColumnPropertiesGroup.cs
- UrlMappingsModule.cs
- FileLogRecordEnumerator.cs
- DefinitionUpdate.cs
- WebPartDeleteVerb.cs
- DigitalSignature.cs
- UnsafeNativeMethods.cs
- ByteStorage.cs
- Comparer.cs
- KeyValueConfigurationCollection.cs
- InternalDispatchObject.cs
- SQLString.cs
- BamlVersionHeader.cs
- TableItemPatternIdentifiers.cs
- WebHeaderCollection.cs
- CompilerHelpers.cs
- HttpCookiesSection.cs
- Registration.cs
- IProvider.cs
- CalendarTable.cs
- HybridDictionary.cs
- XsltException.cs
- DeleteWorkflowOwnerCommand.cs
- XhtmlTextWriter.cs
- InnerItemCollectionView.cs
- MultiDataTrigger.cs
- ValidatingReaderNodeData.cs
- TemplateParser.cs
- EntityParameterCollection.cs
- TdsEnums.cs
- IList.cs
- TableLayout.cs
- DependencyObject.cs
- Sql8ConformanceChecker.cs
- CachingHintValidation.cs
- BuildResultCache.cs
- Util.cs
- XPathScanner.cs
- Mappings.cs
- PkcsUtils.cs
- WebPartEditorCancelVerb.cs
- PagePropertiesChangingEventArgs.cs
- Avt.cs
- DynamicQueryStringParameter.cs
- DbProviderFactories.cs
- SettingsAttributeDictionary.cs
- DataViewSettingCollection.cs
- EventLogInformation.cs
- BamlLocalizableResource.cs
- PagerSettings.cs
- MessageAction.cs
- StyleConverter.cs
- ColorAnimationBase.cs
- CodeIndexerExpression.cs
- ContainerControl.cs
- CursorInteropHelper.cs
- SectionRecord.cs
- InvokePattern.cs
- CodeDomSerializationProvider.cs
- XmlLanguage.cs
- MarkupExtensionReturnTypeAttribute.cs
- BitmapEffectDrawingContextWalker.cs
- EntryPointNotFoundException.cs
- ConnectionStringEditor.cs
- StrokeRenderer.cs