Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / CompiledAction.cs / 1 / CompiledAction.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 abstract class CompiledAction : Action { internal abstract void Compile(Compiler compiler); internal virtual bool CompileAttribute(Compiler compiler) { return false; } public void CompileAttributes(Compiler compiler) { NavigatorInput input = compiler.Input; string element = input.LocalName; if (input.MoveToFirstAttribute()) { do { if (! Keywords.Equals(input.NamespaceURI, input.Atoms.Empty)) continue; try { if (CompileAttribute(compiler) == false) { throw XsltException.Create(Res.Xslt_InvalidAttribute, input.LocalName, element); } }catch { if (! compiler.ForwardCompatibility) { throw; } else { // In ForwardCompatibility mode we ignoreing all unknown or incorrect attributes // If it's mandatory attribute we'l notice it absents later. } } } while (input.MoveToNextAttribute()); input.ToParent(); } } // For perf reason we precalculating AVTs at compile time. // If we can do this we set original AVT to null internal static string PrecalculateAvt(ref Avt avt) { string result = null; if(avt != null && avt.IsConstant) { result = avt.Evaluate(null, null); avt = null; } return result; } public void CheckEmpty(Compiler compiler) { // Really EMPTY means no content at all, but the sake of compatibility with MSXML we allow whitespaces string elementName = compiler.Input.Name; if (compiler.Recurse()) { do { // Note: will be reported as XPathNodeType.Text XPathNodeType nodeType = compiler.Input.NodeType; if ( nodeType != XPathNodeType.Whitespace && nodeType != XPathNodeType.Comment && nodeType != XPathNodeType.ProcessingInstruction ) { throw XsltException.Create(Res.Xslt_NotEmptyContents, elementName); } } while (compiler.Advance()); compiler.ToParent(); } } public void CheckRequiredAttribute(Compiler compiler, object attrValue, string attrName) { CheckRequiredAttribute(compiler, attrValue != null, attrName); } public void CheckRequiredAttribute(Compiler compiler, bool attr, string attrName) { if (! attr) { throw XsltException.Create(Res.Xslt_MissingAttribute, attrName); } } } } // 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 abstract class CompiledAction : Action { internal abstract void Compile(Compiler compiler); internal virtual bool CompileAttribute(Compiler compiler) { return false; } public void CompileAttributes(Compiler compiler) { NavigatorInput input = compiler.Input; string element = input.LocalName; if (input.MoveToFirstAttribute()) { do { if (! Keywords.Equals(input.NamespaceURI, input.Atoms.Empty)) continue; try { if (CompileAttribute(compiler) == false) { throw XsltException.Create(Res.Xslt_InvalidAttribute, input.LocalName, element); } }catch { if (! compiler.ForwardCompatibility) { throw; } else { // In ForwardCompatibility mode we ignoreing all unknown or incorrect attributes // If it's mandatory attribute we'l notice it absents later. } } } while (input.MoveToNextAttribute()); input.ToParent(); } } // For perf reason we precalculating AVTs at compile time. // If we can do this we set original AVT to null internal static string PrecalculateAvt(ref Avt avt) { string result = null; if(avt != null && avt.IsConstant) { result = avt.Evaluate(null, null); avt = null; } return result; } public void CheckEmpty(Compiler compiler) { // Really EMPTY means no content at all, but the sake of compatibility with MSXML we allow whitespaces string elementName = compiler.Input.Name; if (compiler.Recurse()) { do { // Note: will be reported as XPathNodeType.Text XPathNodeType nodeType = compiler.Input.NodeType; if ( nodeType != XPathNodeType.Whitespace && nodeType != XPathNodeType.Comment && nodeType != XPathNodeType.ProcessingInstruction ) { throw XsltException.Create(Res.Xslt_NotEmptyContents, elementName); } } while (compiler.Advance()); compiler.ToParent(); } } public void CheckRequiredAttribute(Compiler compiler, object attrValue, string attrName) { CheckRequiredAttribute(compiler, attrValue != null, attrName); } public void CheckRequiredAttribute(Compiler compiler, bool attr, string attrName) { if (! attr) { throw XsltException.Create(Res.Xslt_MissingAttribute, attrName); } } } } // 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
- Faults.cs
- DecimalConstantAttribute.cs
- RegularExpressionValidator.cs
- PasswordRecovery.cs
- TypeSystemHelpers.cs
- ValueUnavailableException.cs
- MimeFormReflector.cs
- BindingCollection.cs
- Slider.cs
- IntersectQueryOperator.cs
- FrameworkElement.cs
- xmlNames.cs
- Cursor.cs
- OleDbSchemaGuid.cs
- StickyNoteContentControl.cs
- ButtonChrome.cs
- IdentityReference.cs
- StylesEditorDialog.cs
- PlainXmlWriter.cs
- SchemaInfo.cs
- QilTernary.cs
- ExtensionWindowHeader.cs
- TimeSpan.cs
- FilterQuery.cs
- TraversalRequest.cs
- CheckedPointers.cs
- PropertyPathWorker.cs
- TextTreeUndo.cs
- TabOrder.cs
- Span.cs
- UncommonField.cs
- WebServiceClientProxyGenerator.cs
- SqlUserDefinedTypeAttribute.cs
- SctClaimDictionary.cs
- ResourceReferenceExpressionConverter.cs
- DataGridComponentEditor.cs
- ProvideValueServiceProvider.cs
- AnnotationMap.cs
- ExtenderProvidedPropertyAttribute.cs
- OrderedEnumerableRowCollection.cs
- SHA512Managed.cs
- SamlSecurityToken.cs
- EventMappingSettingsCollection.cs
- SyndicationPerson.cs
- PersonalizableAttribute.cs
- VirtualPathUtility.cs
- PageSettings.cs
- SignedXml.cs
- DataBoundControlHelper.cs
- DataSourceControlBuilder.cs
- PageThemeBuildProvider.cs
- PassportAuthentication.cs
- HttpConfigurationSystem.cs
- CreateParams.cs
- SqlDataSource.cs
- SiteMapPath.cs
- PatternMatcher.cs
- OutKeywords.cs
- TablePatternIdentifiers.cs
- EntityDataSourceContextCreatedEventArgs.cs
- XmlSchemaElement.cs
- Context.cs
- ObjectManager.cs
- TrimSurroundingWhitespaceAttribute.cs
- DataGridViewRowPrePaintEventArgs.cs
- BulletedListDesigner.cs
- NavigateEvent.cs
- XPathScanner.cs
- CoreSwitches.cs
- MetafileHeaderWmf.cs
- DataGridViewLayoutData.cs
- EntitySetBase.cs
- ServiceManager.cs
- SafeThemeHandle.cs
- XsdDataContractImporter.cs
- ErrorWrapper.cs
- IgnoreDataMemberAttribute.cs
- GenericIdentity.cs
- CacheSection.cs
- FamilyCollection.cs
- TypeSemantics.cs
- Point3D.cs
- ControlType.cs
- RequestCacheManager.cs
- ZoneButton.cs
- RealizationDrawingContextWalker.cs
- DefaultEventAttribute.cs
- XmlIncludeAttribute.cs
- SmiEventSink_Default.cs
- ControlType.cs
- KnownBoxes.cs
- FieldBuilder.cs
- XmlQualifiedNameTest.cs
- ThumbAutomationPeer.cs
- SkewTransform.cs
- SiteMapSection.cs
- WindowsStatic.cs
- RowSpanVector.cs
- TimeoutException.cs
- XMLDiffLoader.cs