Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- SkipStoryboardToFill.cs
- ConnectionProviderAttribute.cs
- _DomainName.cs
- TextBox.cs
- EntityContainerEmitter.cs
- SourceElementsCollection.cs
- PerSessionInstanceContextProvider.cs
- HostedTransportConfigurationManager.cs
- CompletionCallbackWrapper.cs
- TableHeaderCell.cs
- ScaleTransform3D.cs
- SHA512Managed.cs
- NonSerializedAttribute.cs
- GuidelineSet.cs
- ServerProtocol.cs
- BrushConverter.cs
- PerspectiveCamera.cs
- OdbcCommandBuilder.cs
- InvokeMethodDesigner.xaml.cs
- PersonalizationStateInfoCollection.cs
- MachineKeyConverter.cs
- TextTreePropertyUndoUnit.cs
- MemberAccessException.cs
- HybridDictionary.cs
- StylusSystemGestureEventArgs.cs
- CodePageUtils.cs
- UniqueSet.cs
- DataGridViewCell.cs
- PeerEndPoint.cs
- SmtpNetworkElement.cs
- AutoGeneratedFieldProperties.cs
- TiffBitmapDecoder.cs
- odbcmetadatafactory.cs
- StrongNameUtility.cs
- ColorTranslator.cs
- SqlTriggerContext.cs
- WinCategoryAttribute.cs
- SyndicationSerializer.cs
- TextEditorContextMenu.cs
- RadioButtonPopupAdapter.cs
- LinkedResourceCollection.cs
- EndpointDiscoveryMetadataCD1.cs
- XmlTextReaderImplHelpers.cs
- SqlProvider.cs
- CompressEmulationStream.cs
- SafeNativeMethods.cs
- UnSafeCharBuffer.cs
- HwndProxyElementProvider.cs
- RepeatInfo.cs
- Pkcs9Attribute.cs
- QuaternionRotation3D.cs
- FlowDocumentScrollViewer.cs
- BitmapFrameDecode.cs
- HostDesigntimeLicenseContext.cs
- TextViewSelectionProcessor.cs
- EntityClientCacheEntry.cs
- HijriCalendar.cs
- CodeVariableReferenceExpression.cs
- WSDualHttpBindingCollectionElement.cs
- IConvertible.cs
- _CookieModule.cs
- GestureRecognitionResult.cs
- CheckedListBox.cs
- NullExtension.cs
- ItemsChangedEventArgs.cs
- ApplicationServiceManager.cs
- TextSearch.cs
- SafeLibraryHandle.cs
- NativeMethods.cs
- DispatcherHooks.cs
- PriorityQueue.cs
- MsmqBindingBase.cs
- JsonWriter.cs
- Visual3D.cs
- BamlLocalizerErrorNotifyEventArgs.cs
- MessageBox.cs
- WpfGeneratedKnownProperties.cs
- odbcmetadatafactory.cs
- JapaneseCalendar.cs
- SettingsSection.cs
- TypeLibConverter.cs
- InternalBase.cs
- ExcludeFromCodeCoverageAttribute.cs
- QilScopedVisitor.cs
- DynamicActionMessageFilter.cs
- _Semaphore.cs
- CurrencyManager.cs
- ToolTipAutomationPeer.cs
- ContainerVisual.cs
- QueryReaderSettings.cs
- ServiceHostingEnvironmentSection.cs
- ExecutionProperties.cs
- DataControlButton.cs
- ToolStripOverflow.cs
- DatePickerTextBox.cs
- SHA1CryptoServiceProvider.cs
- PropagatorResult.cs
- IEnumerable.cs
- DataSourceView.cs
- Table.cs