Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / Xml / System / Xml / Serialization / XmlSerializerNamespaces.cs / 2 / XmlSerializerNamespaces.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Serialization { using System.Reflection; using System.Collections; using System.IO; using System.Xml.Schema; using System; ////// /// public class XmlSerializerNamespaces { Hashtable namespaces = null; ///[To be supplied.] ////// /// public XmlSerializerNamespaces() { } ///[To be supplied.] ////// /// /// public XmlSerializerNamespaces(XmlSerializerNamespaces namespaces) { this.namespaces = (Hashtable)namespaces.Namespaces.Clone(); } ///[To be supplied.] ////// /// public XmlSerializerNamespaces(XmlQualifiedName[] namespaces) { for (int i = 0; i < namespaces.Length; i++) { XmlQualifiedName qname = namespaces[i]; Add(qname.Name, qname.Namespace); } } ///[To be supplied.] ////// /// public void Add(string prefix, string ns) { // parameter value if (prefix != null && prefix.Length > 0) XmlConvert.VerifyNCName(prefix); if (ns != null && ns.Length > 0) XmlConvert.ToUri(ns); AddInternal(prefix, ns); } internal void AddInternal(string prefix, string ns) { Namespaces[prefix] = ns; } ///[To be supplied.] ////// /// public XmlQualifiedName[] ToArray() { if (NamespaceList == null) return new XmlQualifiedName[0]; return (XmlQualifiedName[])NamespaceList.ToArray(typeof(XmlQualifiedName)); } ///[To be supplied.] ////// /// public int Count { get { return Namespaces.Count; } } internal ArrayList NamespaceList { get { if (namespaces == null || namespaces.Count == 0) return null; ArrayList namespaceList = new ArrayList(); foreach(string key in Namespaces.Keys) { namespaceList.Add(new XmlQualifiedName(key, (string)Namespaces[key])); } return namespaceList; } } internal Hashtable Namespaces { get { if (namespaces == null) namespaces = new Hashtable(); return namespaces; } set { namespaces = value; } } internal string LookupPrefix(string ns) { if (string.IsNullOrEmpty(ns)) return null; if (namespaces == null || namespaces.Count == 0) return null; foreach(string prefix in namespaces.Keys) { if (!string.IsNullOrEmpty(prefix) && (string)namespaces[prefix] == ns) { return prefix; } } return null; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SoapMessage.cs
- Section.cs
- DrawingContext.cs
- ReverseInheritProperty.cs
- SecurityContext.cs
- XsltArgumentList.cs
- ReadOnlyDictionary.cs
- ZoneMembershipCondition.cs
- WorkflowInlining.cs
- MouseGestureValueSerializer.cs
- RelationshipType.cs
- DrawingImage.cs
- ToolboxBitmapAttribute.cs
- ComEventsHelper.cs
- DataGridViewBand.cs
- ParsedAttributeCollection.cs
- CodeAttributeArgument.cs
- ConvertersCollection.cs
- MembershipPasswordException.cs
- SymbolTable.cs
- LexicalChunk.cs
- ProcessHost.cs
- CodeDomSerializationProvider.cs
- RuntimeWrappedException.cs
- CachedPathData.cs
- ServiceBusyException.cs
- ValidatedControlConverter.cs
- SerialPort.cs
- OleDbStruct.cs
- Setter.cs
- BamlTreeUpdater.cs
- ExpressionConverter.cs
- WorkflowDesignerMessageFilter.cs
- DefaultAsyncDataDispatcher.cs
- FacetDescriptionElement.cs
- JoinSymbol.cs
- FontWeight.cs
- DispatcherSynchronizationContext.cs
- InternalTypeHelper.cs
- IPAddress.cs
- TargetParameterCountException.cs
- SliderAutomationPeer.cs
- ToggleButton.cs
- ReaderWriterLock.cs
- Missing.cs
- ReachDocumentSequenceSerializerAsync.cs
- IDataContractSurrogate.cs
- relpropertyhelper.cs
- StateRuntime.cs
- _ContextAwareResult.cs
- MenuItemCollectionEditor.cs
- DocumentScope.cs
- InternalBase.cs
- LoginView.cs
- XamlInt32CollectionSerializer.cs
- ConditionalExpression.cs
- RadioButtonPopupAdapter.cs
- BehaviorDragDropEventArgs.cs
- ETagAttribute.cs
- ZoneLinkButton.cs
- OpCopier.cs
- DropSource.cs
- AssemblyHelper.cs
- ValueType.cs
- SessionStateSection.cs
- OutputCacheProfileCollection.cs
- EndEvent.cs
- SmiContextFactory.cs
- BehaviorService.cs
- ExpressionBinding.cs
- WebDescriptionAttribute.cs
- CorrelationService.cs
- precedingsibling.cs
- ImpersonationOption.cs
- IERequestCache.cs
- XhtmlBasicPanelAdapter.cs
- SecurityPermission.cs
- TrackingRecord.cs
- CodeAccessSecurityEngine.cs
- EmptyEnumerator.cs
- Size3D.cs
- SoapParser.cs
- EventArgs.cs
- XslVisitor.cs
- DataSourceXmlAttributeAttribute.cs
- DataGridViewSelectedColumnCollection.cs
- unitconverter.cs
- DateTimePicker.cs
- ArithmeticLiteral.cs
- InheritablePropertyChangeInfo.cs
- LogLogRecord.cs
- ConnectionProviderAttribute.cs
- X509Certificate.cs
- unitconverter.cs
- DataServiceKeyAttribute.cs
- XmlElementCollection.cs
- HttpBrowserCapabilitiesWrapper.cs
- dataprotectionpermissionattribute.cs
- DBPropSet.cs
- GlyphInfoList.cs