Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Shared / MS / Internal / HashHelper.cs / 1305600 / HashHelper.cs
//---------------------------------------------------------------------------- // //// Copyright (C) 2003 by Microsoft Corporation. All rights reserved. // // // // Description: Static class to help work around hashing-related bugs. // //--------------------------------------------------------------------------- using System; using MS.Internal; // BaseHashHelper #if WINDOWS_BASE namespace MS.Internal.Hashing.WindowsBase #elif PRESENTATION_CORE namespace MS.Internal.Hashing.PresentationCore #elif PRESENTATIONFRAMEWORK using System.ComponentModel; // ICustomTypeDescriptor namespace MS.Internal.Hashing.PresentationFramework #else #error Attempt to define HashHelper in an unknown assembly. namespace MS.Internal.YourAssemblyName #endif { internal static class HashHelper { // The class cctor registers this assembly's exceptional types with // the base helper. static HashHelper() { Initialize(); // this makes FxCop happy - otherwise Initialize is "unused code" Type[] types = new Type[] { #if WINDOWS_BASE #elif PRESENTATION_CORE typeof(System.Windows.Media.CharacterMetrics), // bug 1612093 typeof(System.Windows.Ink.ExtendedProperty), // bug 1612101 typeof(System.Windows.Media.FamilyTypeface), // bug 1612103 typeof(System.Windows.Media.NumberSubstitution), // bug 1612105 #elif PRESENTATIONFRAMEWORK typeof(System.Windows.Markup.Localizer.BamlLocalizableResource), // bug 1612118 typeof(System.Windows.ComponentResourceKey), // bug 1612119 #endif }; BaseHashHelper.RegisterTypes(typeof(HashHelper).Assembly, types); // initialize lower-level assemblies #if PRESENTATIONFRAMEWORK MS.Internal.Hashing.PresentationCore.HashHelper.Initialize(); #endif } // certain objects don't have reliable hashcodes, and cannot be used // within a Hashtable, Dictionary, etc. internal static bool HasReliableHashCode(object item) { return BaseHashHelper.HasReliableHashCode(item); } // this method doesn't do anything, but calling it makes sure the static // cctor gets called internal static void Initialize() { } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- GeneralTransform3D.cs
- BamlRecords.cs
- PeerHopCountAttribute.cs
- SplitterDesigner.cs
- SetIterators.cs
- PerformanceCounterPermissionAttribute.cs
- PropertyGrid.cs
- smtpconnection.cs
- BookmarkManager.cs
- Connection.cs
- InternalControlCollection.cs
- DebuggerAttributes.cs
- PageThemeCodeDomTreeGenerator.cs
- FigureParagraph.cs
- RightsManagementEncryptionTransform.cs
- ResXResourceSet.cs
- UserControlParser.cs
- EntityContainerEntitySetDefiningQuery.cs
- WebPartDisplayModeEventArgs.cs
- StorageScalarPropertyMapping.cs
- DbQueryCommandTree.cs
- PointAnimation.cs
- FixedSOMTableCell.cs
- VisualTarget.cs
- UdpReplyToBehavior.cs
- RuntimeConfigLKG.cs
- CorrelationActionMessageFilter.cs
- DbConnectionInternal.cs
- CursorConverter.cs
- Style.cs
- Symbol.cs
- FileLevelControlBuilderAttribute.cs
- RuntimeConfigLKG.cs
- Tokenizer.cs
- BufferedStream.cs
- SetStateDesigner.cs
- EncodingNLS.cs
- OutKeywords.cs
- CollectionView.cs
- BoolExpression.cs
- XmlNamespaceMapping.cs
- ColumnCollection.cs
- StringWriter.cs
- PrtCap_Base.cs
- TcpProcessProtocolHandler.cs
- Timer.cs
- Collection.cs
- QilNode.cs
- FilePresentation.cs
- IncrementalCompileAnalyzer.cs
- HttpProfileBase.cs
- SemaphoreSlim.cs
- SyncOperationState.cs
- StreamAsIStream.cs
- HttpCookie.cs
- AssociationSetEnd.cs
- UIntPtr.cs
- Popup.cs
- Literal.cs
- DrawingServices.cs
- OdbcErrorCollection.cs
- BuildManager.cs
- StatusBarAutomationPeer.cs
- XmlUTF8TextReader.cs
- TreeNodeCollection.cs
- EncryptedReference.cs
- SafeUserTokenHandle.cs
- SmtpDigestAuthenticationModule.cs
- QilChoice.cs
- adornercollection.cs
- TileBrush.cs
- Configuration.cs
- InvalidateEvent.cs
- AttachmentService.cs
- ConstraintConverter.cs
- InputReportEventArgs.cs
- ButtonRenderer.cs
- TrackingWorkflowEventArgs.cs
- KeyEvent.cs
- FormViewModeEventArgs.cs
- ExtenderProvidedPropertyAttribute.cs
- ConfigurationValues.cs
- UnSafeCharBuffer.cs
- SecurityManager.cs
- SqlUDTStorage.cs
- Symbol.cs
- TextServicesManager.cs
- BooleanExpr.cs
- HttpAsyncResult.cs
- GeneralTransformGroup.cs
- PlainXmlSerializer.cs
- DesignerView.xaml.cs
- RawStylusInputReport.cs
- DataSvcMapFileSerializer.cs
- AuthenticatedStream.cs
- StringToken.cs
- HtmlWindow.cs
- BamlLocalizableResourceKey.cs
- HwndHostAutomationPeer.cs
- ComponentManagerBroker.cs