Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / Xml / System / Xml / XPath / Internal / Variable.cs / 1 / Variable.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; internal class Variable : AstNode { private string localname; private string prefix; public Variable(string name, string prefix) { this.localname = name; this.prefix = prefix; } public override AstType Type { get {return AstType.Variable ; } } public override XPathResultType ReturnType { get {return XPathResultType.Any; } } public string Localname { get { return localname; } } public string Prefix { get { return prefix; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace MS.Internal.Xml.XPath { using System; using System.Xml; using System.Xml.XPath; internal class Variable : AstNode { private string localname; private string prefix; public Variable(string name, string prefix) { this.localname = name; this.prefix = prefix; } public override AstType Type { get {return AstType.Variable ; } } public override XPathResultType ReturnType { get {return XPathResultType.Any; } } public string Localname { get { return localname; } } public string Prefix { get { return prefix; } } } } // 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
- ProfileModule.cs
- XmlSchemaDatatype.cs
- StringFunctions.cs
- DrawingCollection.cs
- ThreadPool.cs
- BatchParser.cs
- diagnosticsswitches.cs
- SqlNodeAnnotation.cs
- ListViewItemEventArgs.cs
- CqlQuery.cs
- validationstate.cs
- propertytag.cs
- SspiNegotiationTokenAuthenticator.cs
- ExecutionContext.cs
- SharedHttpTransportManager.cs
- XMLUtil.cs
- GetPageCompletedEventArgs.cs
- XmlText.cs
- WebPartDescription.cs
- HttpResponseWrapper.cs
- Util.cs
- DBParameter.cs
- SetStateDesigner.cs
- XmlElementAttribute.cs
- PathGeometry.cs
- CharacterMetricsDictionary.cs
- CfgParser.cs
- RetrieveVirtualItemEventArgs.cs
- UiaCoreProviderApi.cs
- MultiView.cs
- TextSerializer.cs
- HttpStaticObjectsCollectionBase.cs
- SQLChars.cs
- ObjectDisposedException.cs
- wmiprovider.cs
- AttributeExtensions.cs
- TrackingServices.cs
- InvalidFilterCriteriaException.cs
- Pen.cs
- RequestCacheManager.cs
- ExpressionsCollectionEditor.cs
- RegisteredHiddenField.cs
- QilPatternFactory.cs
- VerticalAlignConverter.cs
- CompilerTypeWithParams.cs
- SerialPort.cs
- PropertyInfoSet.cs
- ChannelServices.cs
- AppDomainAttributes.cs
- LinearQuaternionKeyFrame.cs
- Missing.cs
- MessageQueue.cs
- Stack.cs
- prompt.cs
- ReferenceEqualityComparer.cs
- ReadingWritingEntityEventArgs.cs
- CrossContextChannel.cs
- Rss20FeedFormatter.cs
- DrawingGroup.cs
- RegexParser.cs
- AsymmetricKeyExchangeDeformatter.cs
- EntityCollection.cs
- BooleanStorage.cs
- FrugalMap.cs
- HttpRuntime.cs
- SqlInternalConnectionSmi.cs
- TemplatedAdorner.cs
- XmlDataLoader.cs
- SelectionRangeConverter.cs
- PermissionSet.cs
- formatter.cs
- SocketInformation.cs
- GridLength.cs
- ConfigPathUtility.cs
- XmlReader.cs
- LinkButton.cs
- ProjectionAnalyzer.cs
- NameValuePermission.cs
- RegexRunner.cs
- KnownIds.cs
- DesignerSerializationOptionsAttribute.cs
- ControlCollection.cs
- HostProtectionPermission.cs
- PeerNode.cs
- FileDataSourceCache.cs
- SchemaAttDef.cs
- CodeGroup.cs
- ServiceOperationListItemList.cs
- HtmlInputPassword.cs
- PixelShader.cs
- HashHelper.cs
- NativeCppClassAttribute.cs
- ValidatorUtils.cs
- SqlInternalConnectionSmi.cs
- XmlTextReaderImpl.cs
- WebConfigurationManager.cs
- XmlSchemaObjectTable.cs
- TreeBuilder.cs
- ComponentCommands.cs
- AppDomainProtocolHandler.cs