Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DoubleStorage.cs
- SqlDelegatedTransaction.cs
- RSAProtectedConfigurationProvider.cs
- XmlWrappingWriter.cs
- RelatedCurrencyManager.cs
- FileEnumerator.cs
- XmlRootAttribute.cs
- httpserverutility.cs
- BlockingCollection.cs
- UpnEndpointIdentity.cs
- LogicalChannelCollection.cs
- SynchronizedInputHelper.cs
- FontWeight.cs
- Message.cs
- EncryptedPackage.cs
- Inline.cs
- WebPartConnectionsCloseVerb.cs
- RunClient.cs
- OleDbPermission.cs
- Annotation.cs
- XmlName.cs
- HtmlInputButton.cs
- VisualStyleInformation.cs
- StringDictionaryWithComparer.cs
- PermissionSet.cs
- Select.cs
- XmlSchemaAll.cs
- RowCache.cs
- WindowsListViewSubItem.cs
- EUCJPEncoding.cs
- InvalidOperationException.cs
- ToolStripRendererSwitcher.cs
- EntityDataSourceWizardForm.cs
- SimpleWorkerRequest.cs
- HGlobalSafeHandle.cs
- CapabilitiesRule.cs
- XmlSchemaElement.cs
- CalculatedColumn.cs
- ToolStripRenderer.cs
- Matrix.cs
- Table.cs
- SafeFileHandle.cs
- PathFigure.cs
- SectionInput.cs
- InternalConfigHost.cs
- Model3DGroup.cs
- ExceptionHelpers.cs
- XmlSchemaParticle.cs
- FlagsAttribute.cs
- Parser.cs
- StrokeFIndices.cs
- CacheOutputQuery.cs
- TableParaClient.cs
- ByteFacetDescriptionElement.cs
- SafeEventLogWriteHandle.cs
- DbUpdateCommandTree.cs
- FtpRequestCacheValidator.cs
- BeginSelectCardRequest.cs
- BitmapVisualManager.cs
- SingletonConnectionReader.cs
- Int32Rect.cs
- PackagePartCollection.cs
- PropertyReferenceSerializer.cs
- DataGridViewCellPaintingEventArgs.cs
- GetPageCompletedEventArgs.cs
- ConnectionStringSettingsCollection.cs
- MappingModelBuildProvider.cs
- XmlWriter.cs
- wgx_exports.cs
- DataListItemCollection.cs
- PriorityQueue.cs
- ChannelSinkStacks.cs
- CachedRequestParams.cs
- FileStream.cs
- BuildProvider.cs
- AnimationException.cs
- ForeignConstraint.cs
- Int32Rect.cs
- ImagingCache.cs
- TypedCompletedAsyncResult.cs
- MemberBinding.cs
- DbModificationClause.cs
- Sql8ExpressionRewriter.cs
- Int64AnimationUsingKeyFrames.cs
- TreeNodeBindingCollection.cs
- ProcessModuleCollection.cs
- XmlBufferedByteStreamReader.cs
- VirtualPathProvider.cs
- StringBuilder.cs
- QuaternionValueSerializer.cs
- AttachedProperty.cs
- PropertyDescriptorGridEntry.cs
- ParserExtension.cs
- SQLUtility.cs
- CompositeClientFormatter.cs
- EdmMember.cs
- BindingManagerDataErrorEventArgs.cs
- Sql8ExpressionRewriter.cs
- ProtectedUri.cs
- HttpStreamXmlDictionaryWriter.cs