Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / TextEvent.cs / 1305376 / TextEvent.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; using System.Xml.XPath; internal class TextEvent : Event { private string text; protected TextEvent() {} public TextEvent(string text) { Debug.Assert(text != null); this.text = text; } public TextEvent(Compiler compiler) { NavigatorInput input = compiler.Input; Debug.Assert(input.NodeType == XPathNodeType.Text || input.NodeType == XPathNodeType.SignificantWhitespace); this.text = input.Value; } public override bool Output(Processor processor, ActionFrame frame) { return processor.TextEvent(this.text); } public virtual string Evaluate(Processor processor, ActionFrame frame) { return this.text; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //[....] //----------------------------------------------------------------------------- namespace System.Xml.Xsl.XsltOld { using Res = System.Xml.Utils.Res; using System; using System.Diagnostics; using System.Xml; using System.Xml.XPath; internal class TextEvent : Event { private string text; protected TextEvent() {} public TextEvent(string text) { Debug.Assert(text != null); this.text = text; } public TextEvent(Compiler compiler) { NavigatorInput input = compiler.Input; Debug.Assert(input.NodeType == XPathNodeType.Text || input.NodeType == XPathNodeType.SignificantWhitespace); this.text = input.Value; } public override bool Output(Processor processor, ActionFrame frame) { return processor.TextEvent(this.text); } public virtual string Evaluate(Processor processor, ActionFrame frame) { return this.text; } } } // 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
- QueryValue.cs
- XmlSignificantWhitespace.cs
- EpmSyndicationContentSerializer.cs
- EdmEntityTypeAttribute.cs
- SelectionUIHandler.cs
- GradientStop.cs
- CompositeDataBoundControl.cs
- CategoryAttribute.cs
- ResourceWriter.cs
- Track.cs
- StylusEditingBehavior.cs
- WebPartConnection.cs
- ExtendedProperty.cs
- FormsIdentity.cs
- Stopwatch.cs
- RtfToXamlReader.cs
- EncoderParameters.cs
- ResponseStream.cs
- ListViewContainer.cs
- SplitterCancelEvent.cs
- XmlnsDefinitionAttribute.cs
- ProgramPublisher.cs
- SyncOperationState.cs
- loginstatus.cs
- StringUtil.cs
- MD5CryptoServiceProvider.cs
- CommonDialog.cs
- MergeExecutor.cs
- AssemblyBuilder.cs
- UniqueIdentifierService.cs
- DebugInfoExpression.cs
- IsolatedStorageException.cs
- Debug.cs
- SearchForVirtualItemEventArgs.cs
- DirectoryRedirect.cs
- PagePropertiesChangingEventArgs.cs
- DataTableReaderListener.cs
- ImageCreator.cs
- DefaultAssemblyResolver.cs
- EntityDataSourceWrapperPropertyDescriptor.cs
- ItemsPanelTemplate.cs
- ResourcesGenerator.cs
- AppDomainManager.cs
- NameValuePair.cs
- StatusBarDrawItemEvent.cs
- MemberAssignment.cs
- ReadOnlyKeyedCollection.cs
- DockPattern.cs
- NativeMethodsOther.cs
- PixelFormat.cs
- SourceSwitch.cs
- AppSettingsReader.cs
- MsmqReceiveHelper.cs
- InstanceDescriptor.cs
- AuthenticationModuleElementCollection.cs
- LinkConverter.cs
- PasswordBoxAutomationPeer.cs
- SqlMethods.cs
- ErasingStroke.cs
- ReliableMessagingVersion.cs
- SafeViewOfFileHandle.cs
- StylusOverProperty.cs
- TransactedReceiveData.cs
- TargetConverter.cs
- DesignerObject.cs
- AxisAngleRotation3D.cs
- DefaultTextStore.cs
- EnterpriseServicesHelper.cs
- SpanIndex.cs
- SqlCommand.cs
- FocusChangedEventArgs.cs
- TdsParserSafeHandles.cs
- MexBindingElement.cs
- Privilege.cs
- Console.cs
- LazyInitializer.cs
- WebPartDisplayModeCancelEventArgs.cs
- WindowsFormsSectionHandler.cs
- ApplicationSecurityInfo.cs
- PasswordTextNavigator.cs
- HelpInfo.cs
- XmlSchemaComplexContentExtension.cs
- CompilerLocalReference.cs
- ClientTarget.cs
- SparseMemoryStream.cs
- RsaKeyIdentifierClause.cs
- HtmlInputText.cs
- InputBuffer.cs
- DnsCache.cs
- AppSettingsSection.cs
- SQLInt16Storage.cs
- tooltip.cs
- PersonalizationProviderCollection.cs
- XPathNodeHelper.cs
- ZoomingMessageFilter.cs
- DataObjectFieldAttribute.cs
- XmlComment.cs
- SendOperation.cs
- UIElementParagraph.cs
- ConstructorBuilder.cs