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
- WorkflowMarkupSerializer.cs
- DataMisalignedException.cs
- PageParserFilter.cs
- Cell.cs
- ArrayElementGridEntry.cs
- Trace.cs
- FirstMatchCodeGroup.cs
- OleTxTransaction.cs
- CodeDefaultValueExpression.cs
- StringResourceManager.cs
- MergablePropertyAttribute.cs
- StylusPointPropertyUnit.cs
- BooleanAnimationUsingKeyFrames.cs
- ReadOnlyTernaryTree.cs
- compensatingcollection.cs
- UnsafePeerToPeerMethods.cs
- DnsCache.cs
- CodeTypeMember.cs
- StartFileNameEditor.cs
- XamlGridLengthSerializer.cs
- HttpHandlerActionCollection.cs
- EntityCommandExecutionException.cs
- DispatcherFrame.cs
- DataListItemEventArgs.cs
- BamlResourceDeserializer.cs
- InputDevice.cs
- ByteStorage.cs
- dtdvalidator.cs
- OperatingSystem.cs
- BinaryVersion.cs
- SchemaCollectionCompiler.cs
- HtmlInputHidden.cs
- ToolStripLocationCancelEventArgs.cs
- NativeMethods.cs
- EntityClientCacheKey.cs
- PackageRelationshipSelector.cs
- FtpRequestCacheValidator.cs
- XmlCountingReader.cs
- MTConfigUtil.cs
- GetRecipientListRequest.cs
- PerformanceCounterNameAttribute.cs
- RelatedCurrencyManager.cs
- SamlConditions.cs
- ReadOnlyDataSourceView.cs
- Int16Animation.cs
- AttributeParameterInfo.cs
- UnsafeNativeMethods.cs
- XmlArrayItemAttribute.cs
- HttpListenerElement.cs
- LicenseContext.cs
- Win32Exception.cs
- AutomationPropertyInfo.cs
- ReflectEventDescriptor.cs
- Pick.cs
- TimelineGroup.cs
- BitmapCacheBrush.cs
- TextEditorTables.cs
- Simplifier.cs
- SafeReversePInvokeHandle.cs
- DBProviderConfigurationHandler.cs
- RequestCachingSection.cs
- XmlUrlEditor.cs
- WebPartTransformerAttribute.cs
- SuppressIldasmAttribute.cs
- DescendantQuery.cs
- WebServiceEnumData.cs
- Convert.cs
- ReadOnlyHierarchicalDataSource.cs
- SamlAuthorizationDecisionClaimResource.cs
- SharedDp.cs
- XmlStreamNodeWriter.cs
- LazyTextWriterCreator.cs
- LinkLabel.cs
- DataColumnCollection.cs
- PersonalizationProvider.cs
- DataGridViewCellCancelEventArgs.cs
- WebPartDeleteVerb.cs
- MemberInfoSerializationHolder.cs
- EndpointIdentityConverter.cs
- FullTrustAssembliesSection.cs
- UnorderedHashRepartitionStream.cs
- ReadContentAsBinaryHelper.cs
- EmptyReadOnlyDictionaryInternal.cs
- XPathSelfQuery.cs
- PowerStatus.cs
- XmlSchemaComplexType.cs
- TextTreeObjectNode.cs
- GCHandleCookieTable.cs
- X509KeyIdentifierClauseType.cs
- contentDescriptor.cs
- UTF32Encoding.cs
- WizardForm.cs
- Repeater.cs
- AllMembershipCondition.cs
- ConnectionManagementElement.cs
- DetailsViewCommandEventArgs.cs
- BaseCodePageEncoding.cs
- FileDialogPermission.cs
- LicenseManager.cs
- PropertyMapper.cs