Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / 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 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. // 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
- XmlSerializer.cs
- ButtonAutomationPeer.cs
- StructuralCache.cs
- XmlCharCheckingWriter.cs
- SubtreeProcessor.cs
- TCPClient.cs
- ScrollViewerAutomationPeer.cs
- EpmAttributeNameBuilder.cs
- Msec.cs
- DataTablePropertyDescriptor.cs
- RoleService.cs
- HttpProtocolReflector.cs
- LicenseException.cs
- Int64Animation.cs
- BindingExpressionUncommonField.cs
- PtsHost.cs
- AnchoredBlock.cs
- UIElementParaClient.cs
- WindowsListViewItem.cs
- DSASignatureFormatter.cs
- RequestCacheValidator.cs
- SafeNativeMethodsMilCoreApi.cs
- KeyedHashAlgorithm.cs
- DataServiceQueryException.cs
- Renderer.cs
- TrailingSpaceComparer.cs
- Control.cs
- ListChangedEventArgs.cs
- RSAOAEPKeyExchangeFormatter.cs
- UniqueEventHelper.cs
- SchemaComplexType.cs
- ExceptionUtil.cs
- IndexingContentUnit.cs
- ProcessInfo.cs
- PageRequestManager.cs
- AttributedMetaModel.cs
- MemoryMappedView.cs
- _FtpControlStream.cs
- PropertyNames.cs
- ScriptModule.cs
- SqlDeflator.cs
- ExpanderAutomationPeer.cs
- AssociationTypeEmitter.cs
- Int32Storage.cs
- HttpsHostedTransportConfiguration.cs
- HttpRequestCacheValidator.cs
- BeginSelectCardRequest.cs
- RecordsAffectedEventArgs.cs
- ProxyAttribute.cs
- ITreeGenerator.cs
- hwndwrapper.cs
- sqlmetadatafactory.cs
- GenericTypeParameterBuilder.cs
- ToolstripProfessionalRenderer.cs
- BamlBinaryReader.cs
- EventWaitHandle.cs
- EncodingNLS.cs
- DataRowChangeEvent.cs
- ProfilePropertySettingsCollection.cs
- XmlRawWriter.cs
- InputLanguageProfileNotifySink.cs
- DataGridViewRowConverter.cs
- MimeMultiPart.cs
- PasswordTextContainer.cs
- WebHttpSecurity.cs
- TemplateBindingExpressionConverter.cs
- WindowsComboBox.cs
- NextPreviousPagerField.cs
- UIElement.cs
- XmlEventCache.cs
- OleDbReferenceCollection.cs
- GotoExpression.cs
- Metafile.cs
- BeginEvent.cs
- ControlParameter.cs
- XNameTypeConverter.cs
- ThreadBehavior.cs
- SerializationHelper.cs
- DaylightTime.cs
- DecimalConstantAttribute.cs
- RegistryDataKey.cs
- PageRanges.cs
- TextEditorTables.cs
- DataGridToolTip.cs
- XmlSortKeyAccumulator.cs
- CatalogZoneAutoFormat.cs
- Pkcs7Recipient.cs
- Vector3DConverter.cs
- AttachedPropertyBrowsableAttribute.cs
- CompilerInfo.cs
- XPathAxisIterator.cs
- BitmapFrame.cs
- StyleCollectionEditor.cs
- MenuEventArgs.cs
- FormsAuthenticationConfiguration.cs
- FacetValues.cs
- SqlStream.cs
- EntryWrittenEventArgs.cs
- BigInt.cs
- ServiceDescriptionSerializer.cs