Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / Xml / System / Xml / XmlQualifiedName.cs / 1 / XmlQualifiedName.cs
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml {
using System.Collections;
using System.Diagnostics;
///
///
/// [To be supplied.]
///
[Serializable]
public class XmlQualifiedName {
string name;
string ns;
[NonSerialized]
Int32 hash;
///
///
/// [To be supplied.]
///
public static readonly XmlQualifiedName Empty = new XmlQualifiedName(string.Empty);
///
///
/// [To be supplied.]
///
public XmlQualifiedName() : this(string.Empty, string.Empty) {}
///
///
/// [To be supplied.]
///
public XmlQualifiedName(string name) : this(name, string.Empty) {}
///
///
/// [To be supplied.]
///
public XmlQualifiedName(string name, string ns) {
this.ns = ns == null ? string.Empty : ns;
this.name = name == null ? string.Empty : name;
}
///
///
/// [To be supplied.]
///
public string Namespace {
get { return ns; }
}
///
///
/// [To be supplied.]
///
public string Name {
get { return name; }
}
///
///
/// [To be supplied.]
///
public override int GetHashCode() {
if(hash == 0) {
hash = Name.GetHashCode() /*+ Namespace.GetHashCode()*/; // for perf reasons we are not taking ns's hashcode.
}
return hash;
}
///
///
/// [To be supplied.]
///
public bool IsEmpty {
get { return Name.Length == 0 && Namespace.Length == 0; }
}
///
///
/// [To be supplied.]
///
public override string ToString() {
return Namespace.Length == 0 ? Name : string.Concat(Namespace, ":" , Name);
}
///
///
/// [To be supplied.]
///
public override bool Equals(object other) {
XmlQualifiedName qname;
if ((object) this == other) {
return true;
}
qname = other as XmlQualifiedName;
if (qname != null) {
return (Name == qname.Name && Namespace == qname.Namespace);
}
return false;
}
///
///
/// [To be supplied.]
///
public static bool operator ==(XmlQualifiedName a, XmlQualifiedName b) {
if ((object) a == (object) b)
return true;
if ((object) a == null || (object) b == null)
return false;
return (a.Name == b.Name && a.Namespace == b.Namespace);
}
///
///
/// [To be supplied.]
///
public static bool operator !=(XmlQualifiedName a, XmlQualifiedName b) {
return !(a == b);
}
///
///
/// [To be supplied.]
///
public static string ToString(string name, string ns) {
return ns == null || ns.Length == 0 ? name : ns + ":" + name;
}
// --------- Some useful internal stuff -----------------
internal void Init(string name, string ns) {
Debug.Assert(name != null && ns != null);
this.name = name;
this.ns = ns;
this.hash = 0;
}
internal void SetNamespace(string ns) {
Debug.Assert(ns != null);
this.ns = ns; //Not changing hash since ns is not used to compute hashcode
}
internal void Verify() {
XmlConvert.VerifyNCName(name);
if (ns.Length != 0) {
XmlConvert.ToUri(ns);
}
}
internal void Atomize(XmlNameTable nameTable) {
Debug.Assert(name != null);
name = nameTable.Add(name);
ns = nameTable.Add(ns);
}
internal static XmlQualifiedName Parse(string s, IXmlNamespaceResolver nsmgr, out string prefix) {
string localName;
ValidateNames.ParseQNameThrow(s, out prefix, out localName);
string uri = nsmgr.LookupNamespace(prefix);
if (uri == null) {
if (prefix.Length != 0) {
throw new XmlException(Res.Xml_UnknownNs, prefix);
}
else { //Re-map namespace of empty prefix to string.Empty when there is no default namespace declared
uri = string.Empty;
}
}
return new XmlQualifiedName(localName, uri);
}
internal XmlQualifiedName Clone() {
return (XmlQualifiedName)MemberwiseClone();
}
internal static int Compare(XmlQualifiedName a, XmlQualifiedName b) {
if (null == a) {
return (null == b) ? 0 : -1;
}
if (null == b) {
return 1;
}
int i = String.CompareOrdinal(a.Namespace, b.Namespace);
if (i == 0) {
i = String.CompareOrdinal(a.Name, b.Name);
}
return i;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
// [....]
//-----------------------------------------------------------------------------
namespace System.Xml {
using System.Collections;
using System.Diagnostics;
///
///
/// [To be supplied.]
///
[Serializable]
public class XmlQualifiedName {
string name;
string ns;
[NonSerialized]
Int32 hash;
///
///
/// [To be supplied.]
///
public static readonly XmlQualifiedName Empty = new XmlQualifiedName(string.Empty);
///
///
/// [To be supplied.]
///
public XmlQualifiedName() : this(string.Empty, string.Empty) {}
///
///
/// [To be supplied.]
///
public XmlQualifiedName(string name) : this(name, string.Empty) {}
///
///
/// [To be supplied.]
///
public XmlQualifiedName(string name, string ns) {
this.ns = ns == null ? string.Empty : ns;
this.name = name == null ? string.Empty : name;
}
///
///
/// [To be supplied.]
///
public string Namespace {
get { return ns; }
}
///
///
/// [To be supplied.]
///
public string Name {
get { return name; }
}
///
///
/// [To be supplied.]
///
public override int GetHashCode() {
if(hash == 0) {
hash = Name.GetHashCode() /*+ Namespace.GetHashCode()*/; // for perf reasons we are not taking ns's hashcode.
}
return hash;
}
///
///
/// [To be supplied.]
///
public bool IsEmpty {
get { return Name.Length == 0 && Namespace.Length == 0; }
}
///
///
/// [To be supplied.]
///
public override string ToString() {
return Namespace.Length == 0 ? Name : string.Concat(Namespace, ":" , Name);
}
///
///
/// [To be supplied.]
///
public override bool Equals(object other) {
XmlQualifiedName qname;
if ((object) this == other) {
return true;
}
qname = other as XmlQualifiedName;
if (qname != null) {
return (Name == qname.Name && Namespace == qname.Namespace);
}
return false;
}
///
///
/// [To be supplied.]
///
public static bool operator ==(XmlQualifiedName a, XmlQualifiedName b) {
if ((object) a == (object) b)
return true;
if ((object) a == null || (object) b == null)
return false;
return (a.Name == b.Name && a.Namespace == b.Namespace);
}
///
///
/// [To be supplied.]
///
public static bool operator !=(XmlQualifiedName a, XmlQualifiedName b) {
return !(a == b);
}
///
///
/// [To be supplied.]
///
public static string ToString(string name, string ns) {
return ns == null || ns.Length == 0 ? name : ns + ":" + name;
}
// --------- Some useful internal stuff -----------------
internal void Init(string name, string ns) {
Debug.Assert(name != null && ns != null);
this.name = name;
this.ns = ns;
this.hash = 0;
}
internal void SetNamespace(string ns) {
Debug.Assert(ns != null);
this.ns = ns; //Not changing hash since ns is not used to compute hashcode
}
internal void Verify() {
XmlConvert.VerifyNCName(name);
if (ns.Length != 0) {
XmlConvert.ToUri(ns);
}
}
internal void Atomize(XmlNameTable nameTable) {
Debug.Assert(name != null);
name = nameTable.Add(name);
ns = nameTable.Add(ns);
}
internal static XmlQualifiedName Parse(string s, IXmlNamespaceResolver nsmgr, out string prefix) {
string localName;
ValidateNames.ParseQNameThrow(s, out prefix, out localName);
string uri = nsmgr.LookupNamespace(prefix);
if (uri == null) {
if (prefix.Length != 0) {
throw new XmlException(Res.Xml_UnknownNs, prefix);
}
else { //Re-map namespace of empty prefix to string.Empty when there is no default namespace declared
uri = string.Empty;
}
}
return new XmlQualifiedName(localName, uri);
}
internal XmlQualifiedName Clone() {
return (XmlQualifiedName)MemberwiseClone();
}
internal static int Compare(XmlQualifiedName a, XmlQualifiedName b) {
if (null == a) {
return (null == b) ? 0 : -1;
}
if (null == b) {
return 1;
}
int i = String.CompareOrdinal(a.Namespace, b.Namespace);
if (i == 0) {
i = String.CompareOrdinal(a.Name, b.Name);
}
return i;
}
}
}
// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- BitVector32.cs
- DeviceSpecificDesigner.cs
- AccessDataSourceDesigner.cs
- WindowPattern.cs
- LayoutInformation.cs
- Point.cs
- XMLSyntaxException.cs
- ScrollViewer.cs
- DataServiceQueryException.cs
- PackageController.cs
- InstallerTypeAttribute.cs
- RoleService.cs
- CommandCollectionEditor.cs
- PrintDialog.cs
- DataSourceView.cs
- AdRotator.cs
- ToolStripContentPanel.cs
- SingletonInstanceContextProvider.cs
- XhtmlBasicPanelAdapter.cs
- NavigatorOutput.cs
- EntitySqlException.cs
- BaseParagraph.cs
- ByeOperationCD1AsyncResult.cs
- PseudoWebRequest.cs
- PerspectiveCamera.cs
- ErrorActivity.cs
- PageAsyncTask.cs
- DBSqlParserColumn.cs
- mediapermission.cs
- DataGridSortCommandEventArgs.cs
- MULTI_QI.cs
- AlphaSortedEnumConverter.cs
- AtomServiceDocumentSerializer.cs
- AdPostCacheSubstitution.cs
- EarlyBoundInfo.cs
- ProcessModelSection.cs
- ParameterCollection.cs
- RootProfilePropertySettingsCollection.cs
- PrintingPermission.cs
- OdbcRowUpdatingEvent.cs
- SendKeys.cs
- Int64Storage.cs
- FixUp.cs
- StrongNameIdentityPermission.cs
- messageonlyhwndwrapper.cs
- GridSplitter.cs
- DataGridComboBoxColumn.cs
- PositiveTimeSpanValidatorAttribute.cs
- SourceChangedEventArgs.cs
- COM2EnumConverter.cs
- ObjectTypeMapping.cs
- columnmapkeybuilder.cs
- DataGridViewComboBoxCell.cs
- InstancePersistenceCommandException.cs
- InvalidCastException.cs
- DocumentViewerBaseAutomationPeer.cs
- TextWriterTraceListener.cs
- DataServiceConfiguration.cs
- ColumnReorderedEventArgs.cs
- ExpressionWriter.cs
- Trigger.cs
- NoClickablePointException.cs
- PeerHopCountAttribute.cs
- MultiPartWriter.cs
- AmbiguousMatchException.cs
- ValidationSummaryDesigner.cs
- BuilderElements.cs
- FixedBufferAttribute.cs
- ScriptManager.cs
- ToolStripItemCollection.cs
- SimpleType.cs
- UrlAuthorizationModule.cs
- AspNetHostingPermission.cs
- ReaderWriterLock.cs
- PerformanceCounterCategory.cs
- DtrList.cs
- AdditionalEntityFunctions.cs
- ExpressionBinding.cs
- BaseHashHelper.cs
- XmlSchemaValidator.cs
- UIElement.cs
- FixedNode.cs
- StringAnimationBase.cs
- ThicknessAnimation.cs
- DiagnosticsConfigurationHandler.cs
- ViewManager.cs
- ConnectionInterfaceCollection.cs
- TranslateTransform.cs
- WindowsFormsHostPropertyMap.cs
- COM2Properties.cs
- CompilationSection.cs
- EventLogInternal.cs
- DataTableReader.cs
- SchemaMapping.cs
- ByeOperation11AsyncResult.cs
- DoubleLink.cs
- TargetException.cs
- ColorConverter.cs
- FixedTextBuilder.cs
- AnonymousIdentificationModule.cs