Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / AttributeSetAction.cs / 1 / AttributeSetAction.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; using System.Collections; internal class AttributeSetAction : ContainerAction { internal XmlQualifiedName name; internal XmlQualifiedName Name { get { return this.name; } } internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, this.name, Keywords.s_Name); CompileContent(compiler); } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Name)) { Debug.Assert(this.name == null); this.name = compiler.CreateXPathQName(value); } else if (Keywords.Equals(name, compiler.Atoms.UseAttributeSets)) { // create a UseAttributeSetsAction // sets come before xsl:attributes AddAction(compiler.CreateUseAttributeSetsAction()); } else { return false; } return true; } private void CompileContent(Compiler compiler) { NavigatorInput input = compiler.Input; if (compiler.Recurse()) { do { switch(input.NodeType) { case XPathNodeType.Element: compiler.PushNamespaceScope(); string nspace = input.NamespaceURI; string name = input.LocalName; if (Keywords.Equals(nspace, input.Atoms.XsltNamespace) && Keywords.Equals(name, input.Atoms.Attribute)) { // found attribute so add it AddAction(compiler.CreateAttributeAction()); } else { throw compiler.UnexpectedKeyword(); } compiler.PopScope(); break; case XPathNodeType.Comment: case XPathNodeType.ProcessingInstruction: case XPathNodeType.Whitespace: case XPathNodeType.SignificantWhitespace: break; default: throw XsltException.Create(Res.Xslt_InvalidContents, Keywords.s_AttributeSet); } } while(compiler.Advance()); compiler.ToParent(); } } internal void Merge(AttributeSetAction attributeAction) { // add the contents of "attributeAction" to this action // place them at the end Action action; int i = 0; while((action = attributeAction.GetAction(i)) != null) { AddAction(action); i++; } } } } // 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; using System.Collections; internal class AttributeSetAction : ContainerAction { internal XmlQualifiedName name; internal XmlQualifiedName Name { get { return this.name; } } internal override void Compile(Compiler compiler) { CompileAttributes(compiler); CheckRequiredAttribute(compiler, this.name, Keywords.s_Name); CompileContent(compiler); } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Keywords.Equals(name, compiler.Atoms.Name)) { Debug.Assert(this.name == null); this.name = compiler.CreateXPathQName(value); } else if (Keywords.Equals(name, compiler.Atoms.UseAttributeSets)) { // create a UseAttributeSetsAction // sets come before xsl:attributes AddAction(compiler.CreateUseAttributeSetsAction()); } else { return false; } return true; } private void CompileContent(Compiler compiler) { NavigatorInput input = compiler.Input; if (compiler.Recurse()) { do { switch(input.NodeType) { case XPathNodeType.Element: compiler.PushNamespaceScope(); string nspace = input.NamespaceURI; string name = input.LocalName; if (Keywords.Equals(nspace, input.Atoms.XsltNamespace) && Keywords.Equals(name, input.Atoms.Attribute)) { // found attribute so add it AddAction(compiler.CreateAttributeAction()); } else { throw compiler.UnexpectedKeyword(); } compiler.PopScope(); break; case XPathNodeType.Comment: case XPathNodeType.ProcessingInstruction: case XPathNodeType.Whitespace: case XPathNodeType.SignificantWhitespace: break; default: throw XsltException.Create(Res.Xslt_InvalidContents, Keywords.s_AttributeSet); } } while(compiler.Advance()); compiler.ToParent(); } } internal void Merge(AttributeSetAction attributeAction) { // add the contents of "attributeAction" to this action // place them at the end Action action; int i = 0; while((action = attributeAction.GetAction(i)) != null) { AddAction(action); i++; } } } } // 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
- TextSearch.cs
- SoapIncludeAttribute.cs
- TokenCreationParameter.cs
- TextDecorations.cs
- QilIterator.cs
- ContextInformation.cs
- EntityDataSourceEntityTypeFilterItem.cs
- Attributes.cs
- HashHelper.cs
- XmlSerializerVersionAttribute.cs
- sortedlist.cs
- TiffBitmapDecoder.cs
- CodeAttributeDeclaration.cs
- SHA256Cng.cs
- TagMapCollection.cs
- QuaternionConverter.cs
- GridViewCommandEventArgs.cs
- VectorValueSerializer.cs
- ThaiBuddhistCalendar.cs
- HealthMonitoringSection.cs
- XmlQueryRuntime.cs
- TypeSemantics.cs
- SizeAnimation.cs
- TrackingConditionCollection.cs
- Camera.cs
- AssemblyUtil.cs
- OleDbDataAdapter.cs
- SelectionManager.cs
- XMLSchema.cs
- FragmentQueryProcessor.cs
- MatrixKeyFrameCollection.cs
- DeviceSpecific.cs
- Latin1Encoding.cs
- HttpApplicationFactory.cs
- ImageIndexEditor.cs
- Serializer.cs
- KeyFrames.cs
- ComIntegrationManifestGenerator.cs
- UnknownWrapper.cs
- CfgSemanticTag.cs
- HttpCookieCollection.cs
- RtType.cs
- MarkupObject.cs
- DBCSCodePageEncoding.cs
- ApplyTemplatesAction.cs
- FilterQuery.cs
- DefaultMemberAttribute.cs
- SessionSymmetricTransportSecurityProtocolFactory.cs
- DesignConnection.cs
- LineServicesRun.cs
- Line.cs
- SqlDataSourceDesigner.cs
- RootBrowserWindow.cs
- SubMenuStyleCollectionEditor.cs
- TraceSection.cs
- DetailsView.cs
- JpegBitmapDecoder.cs
- DataStorage.cs
- UserPersonalizationStateInfo.cs
- GridViewDeleteEventArgs.cs
- BoundField.cs
- XpsFontSerializationService.cs
- StructuralObject.cs
- cryptoapiTransform.cs
- DataBindingHandlerAttribute.cs
- DesignerActionPropertyItem.cs
- XPathNavigatorKeyComparer.cs
- PrimitiveCodeDomSerializer.cs
- GlyphRunDrawing.cs
- HideDisabledControlAdapter.cs
- ObjectViewListener.cs
- DataListItemEventArgs.cs
- DataViewManagerListItemTypeDescriptor.cs
- JapaneseLunisolarCalendar.cs
- RefreshPropertiesAttribute.cs
- SqlRetyper.cs
- SqlWebEventProvider.cs
- IntranetCredentialPolicy.cs
- Pen.cs
- Polyline.cs
- DataStreamFromComStream.cs
- MdImport.cs
- Italic.cs
- WebServiceAttribute.cs
- filewebrequest.cs
- Column.cs
- EditorPartCollection.cs
- SqlDataSourceCache.cs
- GeneralTransform.cs
- FileUpload.cs
- SqlDataSourceStatusEventArgs.cs
- SqlSelectStatement.cs
- FixedPage.cs
- PointAnimationUsingPath.cs
- XmlCodeExporter.cs
- LassoHelper.cs
- Config.cs
- SpoolingTask.cs
- StaticExtension.cs
- PointF.cs