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
- XmlSortKeyAccumulator.cs
- ContextMenuAutomationPeer.cs
- CursorInteropHelper.cs
- TypeResolver.cs
- ImageFormat.cs
- WindowsRichEdit.cs
- GlyphCache.cs
- NetworkInformationPermission.cs
- TagNameToTypeMapper.cs
- DBSchemaRow.cs
- SafeWaitHandle.cs
- InputProviderSite.cs
- Verify.cs
- MarshalDirectiveException.cs
- NotifyCollectionChangedEventArgs.cs
- RawTextInputReport.cs
- RangeBaseAutomationPeer.cs
- PropertyInformationCollection.cs
- ReachPrintTicketSerializerAsync.cs
- IdnMapping.cs
- ParserStreamGeometryContext.cs
- ASCIIEncoding.cs
- GACIdentityPermission.cs
- ListBox.cs
- TransformValueSerializer.cs
- TaskFormBase.cs
- StructureChangedEventArgs.cs
- WebPartDeleteVerb.cs
- DateTimeValueSerializerContext.cs
- DynamicQueryableWrapper.cs
- UserInitiatedRoutedEventPermission.cs
- ItemsPanelTemplate.cs
- TakeQueryOptionExpression.cs
- CookieProtection.cs
- ReadWriteObjectLock.cs
- HitTestWithPointDrawingContextWalker.cs
- SiteOfOriginPart.cs
- DependencyObjectType.cs
- SecurityIdentifierConverter.cs
- PropertyMapper.cs
- ManagedIStream.cs
- GridItemCollection.cs
- CountAggregationOperator.cs
- DefaultValueConverter.cs
- InternalTypeHelper.cs
- EntityDataSourceWizardForm.cs
- DtrList.cs
- NetNamedPipeSecurityElement.cs
- HtmlHistory.cs
- SelectionProviderWrapper.cs
- WeakReferenceList.cs
- ScalarRestriction.cs
- WSSecurityOneDotOneSendSecurityHeader.cs
- XmlSchemaAttribute.cs
- InlinedAggregationOperator.cs
- TreeViewAutomationPeer.cs
- DataGridViewColumn.cs
- RowToParametersTransformer.cs
- MailMessageEventArgs.cs
- PlatformNotSupportedException.cs
- WCFServiceClientProxyGenerator.cs
- PathStreamGeometryContext.cs
- OracleEncoding.cs
- PageSetupDialog.cs
- OperatingSystem.cs
- SoapIncludeAttribute.cs
- Point3DKeyFrameCollection.cs
- ProjectionCamera.cs
- LogWriteRestartAreaAsyncResult.cs
- XmlFileEditor.cs
- DataGridViewIntLinkedList.cs
- FontDriver.cs
- PortCache.cs
- StructuredProperty.cs
- Brush.cs
- FormViewInsertEventArgs.cs
- CopyAttributesAction.cs
- Attributes.cs
- NetStream.cs
- DeferredRunTextReference.cs
- ServiceModelConfigurationSectionCollection.cs
- PointLight.cs
- NegotiationTokenAuthenticatorState.cs
- WebReference.cs
- Interlocked.cs
- LinearGradientBrush.cs
- WebServiceMethodData.cs
- HttpServerVarsCollection.cs
- ViewRendering.cs
- HtmlInputPassword.cs
- SpeechSeg.cs
- DataGridViewCellFormattingEventArgs.cs
- HttpHandlerActionCollection.cs
- ProtectedConfiguration.cs
- Fonts.cs
- OptionalRstParameters.cs
- Emitter.cs
- MetadataUtilsSmi.cs
- FrameworkRichTextComposition.cs
- PageTheme.cs