Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / Serialization / XmlSerializerNamespaces.cs / 1305376 / 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
- RemotingSurrogateSelector.cs
- TargetParameterCountException.cs
- NullableDecimalMinMaxAggregationOperator.cs
- XmlHierarchicalEnumerable.cs
- ConsoleTraceListener.cs
- InputLanguageManager.cs
- JsonServiceDocumentSerializer.cs
- WebPartConnectionsConnectVerb.cs
- MsmqTransportReceiveParameters.cs
- SemaphoreSecurity.cs
- BrowserDefinition.cs
- SqlUtils.cs
- ArrayWithOffset.cs
- NameSpaceExtractor.cs
- Image.cs
- InputLanguageCollection.cs
- AttributedMetaModel.cs
- activationcontext.cs
- SerializationStore.cs
- EntityAdapter.cs
- ScriptControl.cs
- ReadOnlyCollection.cs
- ManagedWndProcTracker.cs
- ToolStripItem.cs
- ObjectStateEntryDbUpdatableDataRecord.cs
- JournalEntryStack.cs
- StringArrayConverter.cs
- Parameter.cs
- TimerEventSubscription.cs
- DbSourceParameterCollection.cs
- MethodBuilderInstantiation.cs
- DataFormat.cs
- CompoundFileIOPermission.cs
- HttpVersion.cs
- DeviceContext2.cs
- ConfigurationCollectionAttribute.cs
- ServiceDefaults.cs
- ResourcePool.cs
- ResourcesChangeInfo.cs
- TraceContextEventArgs.cs
- FlowDocumentScrollViewer.cs
- ScrollViewerAutomationPeer.cs
- ConstructorArgumentAttribute.cs
- TextBox.cs
- TemplatePartAttribute.cs
- WasAdminWrapper.cs
- RuleSetBrowserDialog.cs
- AssociatedControlConverter.cs
- SessionStateUtil.cs
- SqlPersistenceWorkflowInstanceDescription.cs
- NegatedConstant.cs
- Unit.cs
- HostedElements.cs
- ConfigurationPropertyAttribute.cs
- DataTrigger.cs
- unitconverter.cs
- UnsafeNativeMethodsCLR.cs
- AvTrace.cs
- UnsafeNativeMethods.cs
- RectangleF.cs
- GroupStyle.cs
- XamlClipboardData.cs
- FlowPanelDesigner.cs
- ToolStripPanelCell.cs
- SafeEventLogWriteHandle.cs
- ExpressionBindingCollection.cs
- COM2IPerPropertyBrowsingHandler.cs
- CreateParams.cs
- SharedStatics.cs
- NGCPageContentCollectionSerializerAsync.cs
- ResolveNameEventArgs.cs
- SqlAliaser.cs
- LayoutEngine.cs
- ChildTable.cs
- AnnotationResourceChangedEventArgs.cs
- QilInvoke.cs
- WebPartEditVerb.cs
- Separator.cs
- MetadataArtifactLoaderXmlReaderWrapper.cs
- TransformGroup.cs
- SetIterators.cs
- WmlObjectListAdapter.cs
- TextDecoration.cs
- JsonReaderWriterFactory.cs
- InputScopeManager.cs
- ACL.cs
- StylusButtonEventArgs.cs
- AspCompat.cs
- StringAnimationBase.cs
- TextEditorParagraphs.cs
- DataPagerFieldCollection.cs
- ScriptingScriptResourceHandlerSection.cs
- EntityDataSourceReferenceGroup.cs
- ClientTargetCollection.cs
- DLinqAssociationProvider.cs
- ZoneIdentityPermission.cs
- IntSecurity.cs
- _MultipleConnectAsync.cs
- counter.cs
- X509AsymmetricSecurityKey.cs