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
- LinqDataSourceUpdateEventArgs.cs
- ArgumentValue.cs
- IntSecurity.cs
- EncodingStreamWrapper.cs
- Cursor.cs
- GridItemCollection.cs
- EntityKey.cs
- TemplatedAdorner.cs
- Soap11ServerProtocol.cs
- SessionStateModule.cs
- BinaryMethodMessage.cs
- TemplatedMailWebEventProvider.cs
- ResourceAttributes.cs
- FileUtil.cs
- DataColumnCollection.cs
- AccessDataSource.cs
- Util.cs
- SetIterators.cs
- XmlQueryOutput.cs
- OdbcConnectionOpen.cs
- Int64Converter.cs
- ProcessModuleCollection.cs
- ISessionStateStore.cs
- SectionInformation.cs
- DataGridItemEventArgs.cs
- DelayedRegex.cs
- SmtpFailedRecipientException.cs
- SafeFileMappingHandle.cs
- HttpTransportManager.cs
- HttpWebRequestElement.cs
- SortDescription.cs
- DataGridViewCellMouseEventArgs.cs
- PropertyCollection.cs
- WpfPayload.cs
- MenuAutoFormat.cs
- COM2IProvidePropertyBuilderHandler.cs
- XmlSerializerAssemblyAttribute.cs
- PasswordBox.cs
- OneOfScalarConst.cs
- HtmlControl.cs
- wgx_commands.cs
- FormatterServicesNoSerializableCheck.cs
- DataStorage.cs
- DataComponentMethodGenerator.cs
- ListManagerBindingsCollection.cs
- DataListItemCollection.cs
- DeploymentSectionCache.cs
- PerformanceCounterPermission.cs
- EditingMode.cs
- SQLString.cs
- XmlSchemaSimpleTypeList.cs
- AspNetHostingPermission.cs
- ClipboardData.cs
- PersistenceTypeAttribute.cs
- ConnectionConsumerAttribute.cs
- GuidTagList.cs
- MarkupObject.cs
- ContainerSelectorGlyph.cs
- XmlSchemaDatatype.cs
- RightNameExpirationInfoPair.cs
- DynamicEntity.cs
- NonBatchDirectoryCompiler.cs
- MouseDevice.cs
- UInt16Converter.cs
- DefaultHttpHandler.cs
- WebPartUtil.cs
- Rule.cs
- SystemIPInterfaceProperties.cs
- FrameworkElementFactory.cs
- PlacementWorkspace.cs
- LinqDataSourceValidationException.cs
- Normalization.cs
- MasterPageCodeDomTreeGenerator.cs
- BlurBitmapEffect.cs
- TextWriterTraceListener.cs
- ClockController.cs
- ClientFactory.cs
- DNS.cs
- TypeListConverter.cs
- odbcmetadatacolumnnames.cs
- ReferentialConstraint.cs
- Function.cs
- RC2CryptoServiceProvider.cs
- ControlAdapter.cs
- ExtentKey.cs
- HostExecutionContextManager.cs
- TypeInfo.cs
- RegexCaptureCollection.cs
- TreeNodeBinding.cs
- Pen.cs
- ProxyWebPartManager.cs
- MouseWheelEventArgs.cs
- MemberJoinTreeNode.cs
- RemoteWebConfigurationHostStream.cs
- ToolStripSplitStackLayout.cs
- MediaContext.cs
- CodeMemberEvent.cs
- LateBoundBitmapDecoder.cs
- _FixedSizeReader.cs
- linebase.cs