Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / Serialization / XmlSerializerNamespaces.cs / 1 / 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 check 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. //------------------------------------------------------------------------------ //[To be supplied.] ///// 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 check 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.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MexHttpBindingCollectionElement.cs
- SynchronizedDispatch.cs
- TemplatedWizardStep.cs
- CodeMemberProperty.cs
- MarkupExtensionReturnTypeAttribute.cs
- DataGridViewLinkCell.cs
- NonPrimarySelectionGlyph.cs
- TreeNodeClickEventArgs.cs
- ListView.cs
- base64Transforms.cs
- RadioButton.cs
- TextServicesPropertyRanges.cs
- InputLanguage.cs
- Size.cs
- SystemBrushes.cs
- DrawingAttributesDefaultValueFactory.cs
- BasePattern.cs
- SqlOuterApplyReducer.cs
- GlyphCache.cs
- DiagnosticTraceSource.cs
- FileReader.cs
- RightsManagementPermission.cs
- ModifiableIteratorCollection.cs
- SqlConnectionStringBuilder.cs
- PopupRoot.cs
- IndexedSelectQueryOperator.cs
- ListBox.cs
- SelectionEditingBehavior.cs
- IdentitySection.cs
- LoginAutoFormat.cs
- TrustManager.cs
- IndexedString.cs
- DBSchemaTable.cs
- VScrollProperties.cs
- XmlSchemas.cs
- SqlMetaData.cs
- SQLInt32.cs
- IPGlobalProperties.cs
- ParameterModifier.cs
- BufferAllocator.cs
- Tracer.cs
- DocumentPage.cs
- DataFieldConverter.cs
- TextParentUndoUnit.cs
- EntityContainerEmitter.cs
- XslNumber.cs
- HtmlShim.cs
- StringAnimationBase.cs
- CreateUserWizardDesigner.cs
- ProviderCollection.cs
- ObjectAnimationUsingKeyFrames.cs
- TimeStampChecker.cs
- ThicknessAnimationUsingKeyFrames.cs
- DataGridRelationshipRow.cs
- TextChange.cs
- StyleSelector.cs
- RemotingConfiguration.cs
- OracleTimeSpan.cs
- DesignerVerb.cs
- Helpers.cs
- ConvertTextFrag.cs
- XmlResolver.cs
- HttpCacheVaryByContentEncodings.cs
- cryptoapiTransform.cs
- TreeWalker.cs
- RotationValidation.cs
- ColorAnimationUsingKeyFrames.cs
- RouteValueDictionary.cs
- JsonDeserializer.cs
- MarkedHighlightComponent.cs
- StandardCommands.cs
- DebugInfoExpression.cs
- TextRunCacheImp.cs
- DistinctQueryOperator.cs
- PolyBezierSegment.cs
- DataColumnMapping.cs
- WindowsAuthenticationEventArgs.cs
- LineServices.cs
- TransformProviderWrapper.cs
- TrackingProfileSerializer.cs
- SafeRightsManagementEnvironmentHandle.cs
- TreeView.cs
- VoiceObjectToken.cs
- WebPartEditorCancelVerb.cs
- DataGridViewTextBoxCell.cs
- CachedPathData.cs
- ListViewAutomationPeer.cs
- BinHexEncoder.cs
- LocalFileSettingsProvider.cs
- MD5.cs
- XsltOutput.cs
- FileDialog_Vista.cs
- TypeLibConverter.cs
- WeakReferenceList.cs
- ActiveDocumentEvent.cs
- XmlSchemaProviderAttribute.cs
- ScaleTransform3D.cs
- TransportConfigurationTypeElement.cs
- PathParser.cs
- DurableServiceAttribute.cs