Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / Serialization / NameTable.cs / 1 / NameTable.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System.Collections; internal class NameKey { string ns; string name; internal NameKey(string name, string ns) { this.name = name; this.ns = ns; } public override bool Equals(object other) { if (!(other is NameKey)) return false; NameKey key = (NameKey)other; return name == key.name && ns == key.ns; } public override int GetHashCode() { return (ns == null ? "".GetHashCode() : ns.GetHashCode()) ^ (name == null ? 0 : name.GetHashCode()); } } internal interface INameScope { object this[string name, string ns] {get; set;} } internal class NameTable : INameScope { Hashtable table = new Hashtable(); internal void Add(XmlQualifiedName qname, object value) { Add(qname.Name, qname.Namespace, value); } internal void Add(string name, string ns, object value) { NameKey key = new NameKey(name, ns); table.Add(key, value); } internal object this[XmlQualifiedName qname] { get { return table[new NameKey(qname.Name, qname.Namespace)]; } set { table[new NameKey(qname.Name, qname.Namespace)] = value; } } internal object this[string name, string ns] { get { return table[new NameKey(name, ns)]; } set { table[new NameKey(name, ns)] = value; } } object INameScope.this[string name, string ns] { get { return table[new NameKey(name, ns)]; } set { table[new NameKey(name, ns)] = value; } } internal ICollection Values { get { return table.Values; } } internal Array ToArray(Type type) { Array a = Array.CreateInstance(type, table.Count); table.Values.CopyTo(a, 0); return a; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System.Collections; internal class NameKey { string ns; string name; internal NameKey(string name, string ns) { this.name = name; this.ns = ns; } public override bool Equals(object other) { if (!(other is NameKey)) return false; NameKey key = (NameKey)other; return name == key.name && ns == key.ns; } public override int GetHashCode() { return (ns == null ? "".GetHashCode() : ns.GetHashCode()) ^ (name == null ? 0 : name.GetHashCode()); } } internal interface INameScope { object this[string name, string ns] {get; set;} } internal class NameTable : INameScope { Hashtable table = new Hashtable(); internal void Add(XmlQualifiedName qname, object value) { Add(qname.Name, qname.Namespace, value); } internal void Add(string name, string ns, object value) { NameKey key = new NameKey(name, ns); table.Add(key, value); } internal object this[XmlQualifiedName qname] { get { return table[new NameKey(qname.Name, qname.Namespace)]; } set { table[new NameKey(qname.Name, qname.Namespace)] = value; } } internal object this[string name, string ns] { get { return table[new NameKey(name, ns)]; } set { table[new NameKey(name, ns)] = value; } } object INameScope.this[string name, string ns] { get { return table[new NameKey(name, ns)]; } set { table[new NameKey(name, ns)] = value; } } internal ICollection Values { get { return table.Values; } } internal Array ToArray(Type type) { Array a = Array.CreateInstance(type, table.Count); table.Values.CopyTo(a, 0); return a; } } } // 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
- SafeFileMappingHandle.cs
- ResourceExpressionBuilder.cs
- LambdaCompiler.ControlFlow.cs
- BufferedGenericXmlSecurityToken.cs
- XmlIterators.cs
- FormViewPagerRow.cs
- PerformanceCounterPermissionEntryCollection.cs
- FileDialogPermission.cs
- Vector3dCollection.cs
- Transactions.cs
- GridViewColumn.cs
- XamlStyleSerializer.cs
- BaseDataListActionList.cs
- ArrayWithOffset.cs
- QuaternionAnimation.cs
- InternalConfigHost.cs
- ObjectDataSourceSelectingEventArgs.cs
- ParamArrayAttribute.cs
- PinnedBufferMemoryStream.cs
- KeyPullup.cs
- StyleBamlRecordReader.cs
- BooleanAnimationBase.cs
- DateTimeFormatInfo.cs
- IProvider.cs
- ItemCollection.cs
- WrapPanel.cs
- GraphicsContainer.cs
- CustomCategoryAttribute.cs
- LinqDataSourceHelper.cs
- WinOEToolBoxItem.cs
- NamedObject.cs
- QilFunction.cs
- LoginDesigner.cs
- ScrollableControl.cs
- TypeInfo.cs
- CodeGeneratorOptions.cs
- Focus.cs
- mansign.cs
- StandardCommands.cs
- Rect3D.cs
- DataGridViewAccessibleObject.cs
- Schema.cs
- AsyncResult.cs
- WorkerRequest.cs
- BasicViewGenerator.cs
- PngBitmapEncoder.cs
- SourceFileBuildProvider.cs
- ImageUrlEditor.cs
- InputLanguageEventArgs.cs
- CodeGenerationManager.cs
- SubpageParaClient.cs
- XPathNodeInfoAtom.cs
- RtfToXamlReader.cs
- Stroke.cs
- DefaultValueConverter.cs
- MatrixAnimationUsingKeyFrames.cs
- MethodMessage.cs
- SqlDataSourceCache.cs
- InheritanceContextChangedEventManager.cs
- LocalFileSettingsProvider.cs
- SafeWaitHandle.cs
- XmlComment.cs
- Expander.cs
- DataGridTable.cs
- SweepDirectionValidation.cs
- SuppressMergeCheckAttribute.cs
- ToolboxService.cs
- ModulesEntry.cs
- LinqDataSourceUpdateEventArgs.cs
- DesignerActionMethodItem.cs
- IsolatedStorageException.cs
- RoutedUICommand.cs
- BevelBitmapEffect.cs
- ArgumentNullException.cs
- ObjectDataSourceMethodEventArgs.cs
- ITextView.cs
- _StreamFramer.cs
- BamlTreeNode.cs
- LeaseManager.cs
- __Filters.cs
- SlotInfo.cs
- DbConnectionPool.cs
- Operators.cs
- ObjectNavigationPropertyMapping.cs
- SoapSchemaMember.cs
- DescendentsWalker.cs
- PropertyGridDesigner.cs
- XmlQualifiedName.cs
- ManifestBasedResourceGroveler.cs
- WeakEventManager.cs
- DeferredElementTreeState.cs
- CodeAttributeDeclaration.cs
- MailDefinition.cs
- ResourceAssociationSetEnd.cs
- TreeNode.cs
- CompoundFileStorageReference.cs
- KeyConstraint.cs
- MemoryMappedView.cs
- CallbackHandler.cs
- NameNode.cs