Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Xml / System / Xml / XPath / Internal / Variable.cs / 1305376 / 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
- TargetParameterCountException.cs
- Filter.cs
- SQLGuidStorage.cs
- ComponentEditorForm.cs
- HasRunnableWorkflowEvent.cs
- InteropBitmapSource.cs
- ChildrenQuery.cs
- ScrollBar.cs
- StringReader.cs
- ExtensionSimplifierMarkupObject.cs
- CookieProtection.cs
- RTLAwareMessageBox.cs
- BaseParaClient.cs
- SafeReversePInvokeHandle.cs
- ArrayHelper.cs
- EventManager.cs
- ExtensionSurface.cs
- MergePropertyDescriptor.cs
- BindingExpressionUncommonField.cs
- NamespaceMapping.cs
- FixedSOMPageConstructor.cs
- DataBoundControl.cs
- Image.cs
- SmtpNetworkElement.cs
- ErrorWebPart.cs
- ProviderIncompatibleException.cs
- KeyValuePair.cs
- XhtmlTextWriter.cs
- ColorDialog.cs
- PropertyTabAttribute.cs
- DBConnectionString.cs
- URL.cs
- HwndProxyElementProvider.cs
- ScriptResourceInfo.cs
- _SslStream.cs
- ManagedFilter.cs
- UnionCodeGroup.cs
- Descriptor.cs
- XmlILStorageConverter.cs
- GeometryGroup.cs
- ImageKeyConverter.cs
- DataGridColumnsPage.cs
- XmlSerializerFactory.cs
- EntityCommandCompilationException.cs
- PipelineModuleStepContainer.cs
- ScrollBar.cs
- RequestCache.cs
- XmlSchemaChoice.cs
- VectorConverter.cs
- NativeMethods.cs
- ReaderWriterLock.cs
- ToolStripRenderer.cs
- ObjectManager.cs
- SHA1CryptoServiceProvider.cs
- Axis.cs
- FlowLayoutPanelDesigner.cs
- DataBinder.cs
- StatusBar.cs
- OracleParameterCollection.cs
- EventWaitHandle.cs
- MultiSelector.cs
- ClientRolePrincipal.cs
- EndSelectCardRequest.cs
- ExecutorLocksHeldException.cs
- SettingsContext.cs
- DiagnosticTrace.cs
- ProviderUtil.cs
- SqlDataReader.cs
- SystemIPInterfaceProperties.cs
- AnonymousIdentificationSection.cs
- PasswordPropertyTextAttribute.cs
- SafeFileMappingHandle.cs
- DataBoundControlHelper.cs
- CompilerResults.cs
- Socket.cs
- IArgumentProvider.cs
- SmtpException.cs
- CompositeDuplexElement.cs
- WinEventTracker.cs
- SmiContext.cs
- SingleTagSectionHandler.cs
- SerialErrors.cs
- UnknownBitmapEncoder.cs
- ChameleonKey.cs
- DataGridViewImageColumn.cs
- ListViewContainer.cs
- ZipPackagePart.cs
- SafeRightsManagementHandle.cs
- DebugView.cs
- HMACRIPEMD160.cs
- SafeNativeMethods.cs
- WeakHashtable.cs
- ProxyHelper.cs
- SubqueryRules.cs
- HttpModuleAction.cs
- ServiceOperationParameter.cs
- ByteViewer.cs
- TransformerConfigurationWizardBase.cs
- ToolBarPanel.cs
- XmlReflectionMember.cs