Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ContentPlaceHolder.cs
- FrameworkTemplate.cs
- ExtendedPropertyCollection.cs
- TranslateTransform.cs
- Converter.cs
- ExpandedProjectionNode.cs
- PagePropertiesChangingEventArgs.cs
- TreeViewAutomationPeer.cs
- PagerSettings.cs
- TextModifierScope.cs
- XPathConvert.cs
- BinaryWriter.cs
- PromptBuilder.cs
- DrawingContextDrawingContextWalker.cs
- SizeLimitedCache.cs
- PopupControlService.cs
- ProxyElement.cs
- ConfigXmlText.cs
- PrimitiveXmlSerializers.cs
- ProcessRequestArgs.cs
- ContentDisposition.cs
- SqlInfoMessageEvent.cs
- FontSource.cs
- BaseDataListDesigner.cs
- DBCSCodePageEncoding.cs
- MarkupExtensionSerializer.cs
- CodeTypeParameter.cs
- UnaryQueryOperator.cs
- PointF.cs
- Positioning.cs
- TextEndOfLine.cs
- ConditionCollection.cs
- CookielessData.cs
- SchemaDeclBase.cs
- SecurityResources.cs
- HostedHttpTransportManager.cs
- SecureEnvironment.cs
- SmiMetaDataProperty.cs
- DateTimePicker.cs
- CodeLabeledStatement.cs
- BindingManagerDataErrorEventArgs.cs
- SlotInfo.cs
- MessageQueuePermission.cs
- CookieParameter.cs
- MimeMapping.cs
- PointCollectionConverter.cs
- TextElementEnumerator.cs
- BookmarkOptionsHelper.cs
- StateMachineAction.cs
- ThreadAbortException.cs
- SafeFindHandle.cs
- SqlNodeAnnotations.cs
- XomlSerializationHelpers.cs
- MenuStrip.cs
- SqlServer2KCompatibilityAnnotation.cs
- SinglePageViewer.cs
- Matrix3DValueSerializer.cs
- WinInetCache.cs
- GeometryValueSerializer.cs
- XmlJsonWriter.cs
- DataViewSettingCollection.cs
- MetadataPropertyCollection.cs
- ClaimSet.cs
- DBParameter.cs
- FormClosingEvent.cs
- HtmlEncodedRawTextWriter.cs
- ReferenceConverter.cs
- GenerateTemporaryTargetAssembly.cs
- Parser.cs
- NavigationPropertySingletonExpression.cs
- OverloadGroupAttribute.cs
- SchemaImporter.cs
- CodePageUtils.cs
- ContextMenuService.cs
- MergeFilterQuery.cs
- MexNamedPipeBindingElement.cs
- PixelFormatConverter.cs
- ConfigXmlSignificantWhitespace.cs
- StyleSelector.cs
- HttpWebRequest.cs
- PropertyValueChangedEvent.cs
- PageFunction.cs
- SupportingTokenListenerFactory.cs
- SettingsPropertyWrongTypeException.cs
- MetafileEditor.cs
- FlowPosition.cs
- XmlSignificantWhitespace.cs
- FileNotFoundException.cs
- ObjectCloneHelper.cs
- Renderer.cs
- XmlRootAttribute.cs
- SafeRegistryHandle.cs
- DesignerValidationSummaryAdapter.cs
- Style.cs
- PageRanges.cs
- WebProxyScriptElement.cs
- BCLDebug.cs
- ImageDrawing.cs
- XmlSchemaFacet.cs
- DataGridViewCellStyle.cs