Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / XmlUtils / System / Xml / Xsl / QIL / QilName.cs / 1 / QilName.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// View over a Qil name literal. /// ////// Don't construct QIL nodes directly; instead, use the internal class QilName : QilLiteral { private string local; private string uri; private string prefix; //----------------------------------------------- // Constructor //----------------------------------------------- ///QilFactory . ////// Construct a new node /// public QilName(QilNodeType nodeType, string local, string uri, string prefix) : base(nodeType, null) { LocalName = local; NamespaceUri = uri; Prefix = prefix; Value = this; } //----------------------------------------------- // QilName methods //----------------------------------------------- public string LocalName { get { return this.local; } set { this.local = value; } } public string NamespaceUri { get { return this.uri; } set { this.uri = value; } } public string Prefix { get { return this.prefix; } set { this.prefix = value; } } ////// Build the qualified name in the form prefix:local /// public string QualifiedName { get { if (this.prefix.Length == 0) { return this.local; } else { return this.prefix + ':' + this.local; } } } ////// Override GetHashCode() so that the QilName can be used as a key in the hashtable. /// ///Does not compare their prefixes (if any). public override int GetHashCode() { return this.local.GetHashCode(); } ////// Override Equals() so that the QilName can be used as a key in the hashtable. /// ///Does not compare their prefixes (if any). public override bool Equals(object other) { QilName name = other as QilName; if (name == null) return false; return this.local == name.local && this.uri == name.uri; } ////// Return the QilName in this format: "{namespace}prefix:local-name". /// If the namespace is empty, return the QilName in this truncated format: "local-name". /// If the prefix is empty, return the QilName in this truncated format: "{namespace}local-name". /// public override string ToString() { if (prefix.Length == 0) { if (uri.Length == 0) return local; return string.Concat("{", uri, "}", local); } return string.Concat("{", uri, "}", prefix, ":", local); } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- using System; using System.Diagnostics; namespace System.Xml.Xsl.Qil { ////// View over a Qil name literal. /// ////// Don't construct QIL nodes directly; instead, use the internal class QilName : QilLiteral { private string local; private string uri; private string prefix; //----------------------------------------------- // Constructor //----------------------------------------------- ///QilFactory . ////// Construct a new node /// public QilName(QilNodeType nodeType, string local, string uri, string prefix) : base(nodeType, null) { LocalName = local; NamespaceUri = uri; Prefix = prefix; Value = this; } //----------------------------------------------- // QilName methods //----------------------------------------------- public string LocalName { get { return this.local; } set { this.local = value; } } public string NamespaceUri { get { return this.uri; } set { this.uri = value; } } public string Prefix { get { return this.prefix; } set { this.prefix = value; } } ////// Build the qualified name in the form prefix:local /// public string QualifiedName { get { if (this.prefix.Length == 0) { return this.local; } else { return this.prefix + ':' + this.local; } } } ////// Override GetHashCode() so that the QilName can be used as a key in the hashtable. /// ///Does not compare their prefixes (if any). public override int GetHashCode() { return this.local.GetHashCode(); } ////// Override Equals() so that the QilName can be used as a key in the hashtable. /// ///Does not compare their prefixes (if any). public override bool Equals(object other) { QilName name = other as QilName; if (name == null) return false; return this.local == name.local && this.uri == name.uri; } ////// Return the QilName in this format: "{namespace}prefix:local-name". /// If the namespace is empty, return the QilName in this truncated format: "local-name". /// If the prefix is empty, return the QilName in this truncated format: "{namespace}local-name". /// public override string ToString() { if (prefix.Length == 0) { if (uri.Length == 0) return local; return string.Concat("{", uri, "}", local); } return string.Concat("{", uri, "}", prefix, ":", local); } } } // 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
- GridViewDeletedEventArgs.cs
- CodeSnippetCompileUnit.cs
- TreeNodeBindingCollection.cs
- CancellableEnumerable.cs
- ProjectionAnalyzer.cs
- SplashScreenNativeMethods.cs
- DrawingImage.cs
- HttpWebRequest.cs
- TextElement.cs
- SimpleMailWebEventProvider.cs
- Point3DConverter.cs
- XAMLParseException.cs
- WebPartAuthorizationEventArgs.cs
- CompletedAsyncResult.cs
- AdornerPresentationContext.cs
- Compiler.cs
- URIFormatException.cs
- DataGridViewColumnCollectionDialog.cs
- WebPartTransformer.cs
- Property.cs
- FormParameter.cs
- TextLineBreak.cs
- Transform3DCollection.cs
- NativeWrapper.cs
- ImageClickEventArgs.cs
- AddInIpcChannel.cs
- PerformanceCounterPermissionAttribute.cs
- BindToObject.cs
- Icon.cs
- IgnorePropertiesAttribute.cs
- XsltQilFactory.cs
- TransportConfigurationTypeElementCollection.cs
- DbDataRecord.cs
- VisualTreeHelper.cs
- MessageQueueTransaction.cs
- ScopelessEnumAttribute.cs
- InvalidCardException.cs
- XmlStrings.cs
- Vector3DAnimationBase.cs
- RightNameExpirationInfoPair.cs
- SiteIdentityPermission.cs
- FaultImportOptions.cs
- Internal.cs
- RuntimeUtils.cs
- DoubleLinkListEnumerator.cs
- EndpointAddressMessageFilter.cs
- OpCodes.cs
- RawStylusInputCustomDataList.cs
- MethodBuilder.cs
- FileDialogCustomPlace.cs
- SqlParameter.cs
- ScriptResourceHandler.cs
- TablePatternIdentifiers.cs
- ListViewTableCell.cs
- UndoUnit.cs
- SqlCacheDependency.cs
- DbMetaDataFactory.cs
- TextElementEditingBehaviorAttribute.cs
- HwndProxyElementProvider.cs
- HTTP_SERVICE_CONFIG_URLACL_KEY.cs
- SmiRecordBuffer.cs
- ThicknessAnimationBase.cs
- DiscriminatorMap.cs
- MultiBindingExpression.cs
- LocatorPart.cs
- ResourceDefaultValueAttribute.cs
- SelectionUIService.cs
- CodeSubDirectory.cs
- FixedPosition.cs
- DbgUtil.cs
- HotCommands.cs
- ProxySimple.cs
- MonthCalendar.cs
- COM2PropertyBuilderUITypeEditor.cs
- InitializingNewItemEventArgs.cs
- WMIGenerator.cs
- SimpleWebHandlerParser.cs
- SymbolMethod.cs
- TableCellCollection.cs
- TypeValidationEventArgs.cs
- SignedXml.cs
- RoutingService.cs
- SourceFilter.cs
- ToolStripStatusLabel.cs
- SoapServerMessage.cs
- Highlights.cs
- DbUpdateCommandTree.cs
- Path.cs
- CachedPathData.cs
- Ref.cs
- RawStylusInputReport.cs
- Graph.cs
- DataQuery.cs
- dataSvcMapFileLoader.cs
- MonitoringDescriptionAttribute.cs
- DefaultMemberAttribute.cs
- WindowsSlider.cs
- Int32CollectionValueSerializer.cs
- AppDomainManager.cs
- LeaseManager.cs