Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / NamespaceDecl.cs / 1305376 / NamespaceDecl.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Xml; internal class NamespaceDecl { private string prefix; private string nsUri; private string prevDefaultNsUri; private NamespaceDecl next; internal string Prefix { get { return this.prefix; } } internal string Uri { get { return this.nsUri; } } internal string PrevDefaultNsUri { get { return this.prevDefaultNsUri; } } internal NamespaceDecl Next { get { return this.next; } } internal NamespaceDecl(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl next) { Init(prefix, nsUri, prevDefaultNsUri, next); } internal void Init(string prefix, string nsUri, string prevDefaultNsUri, NamespaceDecl next) { this.prefix = prefix; this.nsUri = nsUri; this.prevDefaultNsUri = prevDefaultNsUri; this.next = next; } } } // 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
- GetWorkflowTree.cs
- ConfigurationCollectionAttribute.cs
- DragEvent.cs
- ZipIOCentralDirectoryFileHeader.cs
- NetCodeGroup.cs
- GraphicsPath.cs
- FileVersionInfo.cs
- ColorConvertedBitmapExtension.cs
- RawKeyboardInputReport.cs
- DefinitionBase.cs
- SqlRemoveConstantOrderBy.cs
- SafeSecurityHandles.cs
- RecognitionEventArgs.cs
- ExtendedPropertyDescriptor.cs
- CustomCategoryAttribute.cs
- ConcurrencyBehavior.cs
- StartFileNameEditor.cs
- NotSupportedException.cs
- LeaseManager.cs
- datacache.cs
- OAVariantLib.cs
- CodeDOMUtility.cs
- DBSchemaRow.cs
- TextOutput.cs
- Listbox.cs
- DesignSurface.cs
- InternalDuplexChannelFactory.cs
- XmlWhitespace.cs
- SqlCacheDependencySection.cs
- ProxyWebPart.cs
- TCEAdapterGenerator.cs
- XmlEntityReference.cs
- WindowsListViewSubItem.cs
- MemberAccessException.cs
- TextComposition.cs
- PlainXmlWriter.cs
- ControlType.cs
- EncoderBestFitFallback.cs
- XmlProcessingInstruction.cs
- Activity.cs
- StretchValidation.cs
- SpellCheck.cs
- MappingModelBuildProvider.cs
- SimpleRecyclingCache.cs
- BaseParagraph.cs
- NetNamedPipeBindingElement.cs
- MultipleViewPatternIdentifiers.cs
- ApplicationServiceManager.cs
- ExternalDataExchangeClient.cs
- Environment.cs
- ZoomingMessageFilter.cs
- SerializationObjectManager.cs
- XamlReader.cs
- EntityDataSourceChangedEventArgs.cs
- TrackBarDesigner.cs
- WindowsListViewSubItem.cs
- ValidatorCompatibilityHelper.cs
- Popup.cs
- RegexCaptureCollection.cs
- MaskDescriptor.cs
- DateTimeFormatInfoScanner.cs
- DynamicControlParameter.cs
- SignedXml.cs
- Funcletizer.cs
- UpDownEvent.cs
- Soap.cs
- AutomationAttributeInfo.cs
- Types.cs
- ListControlConvertEventArgs.cs
- DataSourceControlBuilder.cs
- TypeUsageBuilder.cs
- GradientBrush.cs
- ITreeGenerator.cs
- NamespaceListProperty.cs
- RC2.cs
- DataRow.cs
- TimeZone.cs
- UrlMappingCollection.cs
- ListViewGroup.cs
- GACMembershipCondition.cs
- DynamicDataResources.Designer.cs
- ComNativeDescriptor.cs
- DataRecordInternal.cs
- WindowsSysHeader.cs
- UnsafeNativeMethods.cs
- ResourceDisplayNameAttribute.cs
- NamespaceEmitter.cs
- JobInputBins.cs
- ConstructorNeedsTagAttribute.cs
- COM2TypeInfoProcessor.cs
- RegistryConfigurationProvider.cs
- HttpAsyncResult.cs
- StylusTip.cs
- DataContractSerializerElement.cs
- Int32CAMarshaler.cs
- EmptyReadOnlyDictionaryInternal.cs
- OleDbDataAdapter.cs
- XmlIgnoreAttribute.cs
- codemethodreferenceexpression.cs
- SpanIndex.cs