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
- Renderer.cs
- SyndicationDeserializer.cs
- NativeMethods.cs
- EdmProviderManifest.cs
- TagPrefixCollection.cs
- TextFormatter.cs
- ObjectRef.cs
- BitmapCacheBrush.cs
- DesignOnlyAttribute.cs
- ErrorBehavior.cs
- SecurityResources.cs
- SafeEventLogReadHandle.cs
- XmlWrappingReader.cs
- TabItemWrapperAutomationPeer.cs
- HebrewNumber.cs
- GridItem.cs
- DependencyObject.cs
- OdbcException.cs
- HelpInfo.cs
- GroupLabel.cs
- HttpWebRequest.cs
- KeyboardInputProviderAcquireFocusEventArgs.cs
- UserControlDesigner.cs
- CompositeScriptReferenceEventArgs.cs
- TextBoxAutomationPeer.cs
- UnsafeNativeMethods.cs
- QueryParameter.cs
- PixelFormats.cs
- PolyLineSegment.cs
- MultiPageTextView.cs
- SchemeSettingElement.cs
- RegistrationServices.cs
- AttributeAction.cs
- WebServiceEnumData.cs
- XmlSchemaDocumentation.cs
- HtmlToClrEventProxy.cs
- ExitEventArgs.cs
- UInt16.cs
- Activator.cs
- RequestResizeEvent.cs
- MouseButton.cs
- ExpressionWriter.cs
- SettingsAttributes.cs
- EmptyQuery.cs
- CriticalHandle.cs
- WindowsToolbarItemAsMenuItem.cs
- CacheDict.cs
- ClientRequest.cs
- OdbcException.cs
- XmlLoader.cs
- FontNamesConverter.cs
- ObfuscateAssemblyAttribute.cs
- Polygon.cs
- EmptyCollection.cs
- recordstate.cs
- ScrollContentPresenter.cs
- EntityDataSourceContextDisposingEventArgs.cs
- ThrowHelper.cs
- TableLayoutPanel.cs
- RuleSettingsCollection.cs
- DecimalKeyFrameCollection.cs
- XPathDocumentBuilder.cs
- MenuItemCollection.cs
- RestHandler.cs
- SourceItem.cs
- SoapAttributeOverrides.cs
- DaylightTime.cs
- InkCanvas.cs
- ButtonChrome.cs
- AlphabeticalEnumConverter.cs
- DataGridViewElement.cs
- FieldAccessException.cs
- TemplateControl.cs
- WebControl.cs
- DataGrid.cs
- RedirectionProxy.cs
- PrimarySelectionGlyph.cs
- CachedBitmap.cs
- Utils.cs
- BitmapPalettes.cs
- KeyedHashAlgorithm.cs
- Fx.cs
- SpecialNameAttribute.cs
- ClientSideProviderDescription.cs
- HtmlSelect.cs
- BezierSegment.cs
- PagedDataSource.cs
- SortAction.cs
- RoleService.cs
- ListViewInsertedEventArgs.cs
- PerformanceCounterScope.cs
- ContentOperations.cs
- DictionaryManager.cs
- ForEachAction.cs
- StandardToolWindows.cs
- PropagationProtocolsTracing.cs
- EntitySetDataBindingList.cs
- RuleSet.cs
- X509Certificate.cs
- QuaternionAnimation.cs