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
- DefaultMergeHelper.cs
- WebPartConnectionCollection.cs
- DocumentReferenceCollection.cs
- ObjectDataSource.cs
- ProgressBar.cs
- WebPartsPersonalization.cs
- ServiceProviders.cs
- DbgUtil.cs
- Camera.cs
- SlotInfo.cs
- HtmlEncodedRawTextWriter.cs
- MetadataArtifactLoaderCompositeResource.cs
- ValidatedControlConverter.cs
- GridView.cs
- DecoderNLS.cs
- loginstatus.cs
- BaseTemplatedMobileComponentEditor.cs
- ConfigurationException.cs
- XamlValidatingReader.cs
- HierarchicalDataSourceIDConverter.cs
- SemanticBasicElement.cs
- DesignerSerializationOptionsAttribute.cs
- CalendarDataBindingHandler.cs
- ThrowOnMultipleAssignment.cs
- XmlSchemaComplexType.cs
- TextAnchor.cs
- SqlDependencyUtils.cs
- NavigationFailedEventArgs.cs
- DbParameterCollection.cs
- Predicate.cs
- ContentPlaceHolder.cs
- ThreadStaticAttribute.cs
- DefaultWorkflowLoaderService.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- ConnectionStringsExpressionBuilder.cs
- Marshal.cs
- DispatcherHookEventArgs.cs
- PageThemeParser.cs
- SpinWait.cs
- HighContrastHelper.cs
- BamlLocalizationDictionary.cs
- LinqToSqlWrapper.cs
- CodeDirectoryCompiler.cs
- VersionPair.cs
- SmtpSection.cs
- JsonServiceDocumentSerializer.cs
- SqlDependencyUtils.cs
- XamlClipboardData.cs
- DynamicPropertyReader.cs
- CFStream.cs
- OdbcCommandBuilder.cs
- MergeFilterQuery.cs
- GregorianCalendar.cs
- TreeWalker.cs
- NumericUpDownAccelerationCollection.cs
- AutomationTextAttribute.cs
- SessionChannels.cs
- AssociationSetEnd.cs
- ChannelEndpointElement.cs
- ErrorWrapper.cs
- VisualStyleRenderer.cs
- CellParagraph.cs
- XmlElementCollection.cs
- UserControlParser.cs
- RemotingConfiguration.cs
- TemplateField.cs
- WebZone.cs
- OletxResourceManager.cs
- CommentEmitter.cs
- BeginGetFileNameFromUserRequest.cs
- InvokePattern.cs
- DocumentPageViewAutomationPeer.cs
- ArraySortHelper.cs
- TableRowGroup.cs
- FixedTextBuilder.cs
- ConditionValidator.cs
- FragmentNavigationEventArgs.cs
- ExceptQueryOperator.cs
- PageSettings.cs
- EntityUtil.cs
- DbTransaction.cs
- NavigationCommands.cs
- StringConverter.cs
- SID.cs
- RegistryPermission.cs
- HtmlUtf8RawTextWriter.cs
- SerializationObjectManager.cs
- FileCodeGroup.cs
- Rijndael.cs
- MaterialCollection.cs
- ServiceSettingsResponseInfo.cs
- PartitionerQueryOperator.cs
- ToolStripDropTargetManager.cs
- TabControlAutomationPeer.cs
- HtmlMobileTextWriter.cs
- StandardOleMarshalObject.cs
- WinInetCache.cs
- SingleAnimationUsingKeyFrames.cs
- ExpressionNode.cs
- EntitySetBase.cs