Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / XmlUtils / System / Xml / Xsl / XsltOld / AttributeSetAction.cs / 1305376 / 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, "name"); CompileContent(compiler); } internal override bool CompileAttribute(Compiler compiler) { string name = compiler.Input.LocalName; string value = compiler.Input.Value; if (Ref.Equal(name, compiler.Atoms.Name)) { Debug.Assert(this.name == null); this.name = compiler.CreateXPathQName(value); } else if (Ref.Equal(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 (Ref.Equal(nspace, input.Atoms.UriXsl) && Ref.Equal(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, "attribute-set"); } } 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
- DataQuery.cs
- SelectorItemAutomationPeer.cs
- StrokeSerializer.cs
- TraceContextRecord.cs
- QueryInterceptorAttribute.cs
- DataMemberFieldConverter.cs
- ExpandableObjectConverter.cs
- SymbolTable.cs
- Encoding.cs
- ControlCollection.cs
- StreamGeometry.cs
- CachedFontFace.cs
- ListControlConvertEventArgs.cs
- DateTimeValueSerializer.cs
- webbrowsersite.cs
- VScrollBar.cs
- ServiceHttpModule.cs
- ActivityUtilities.cs
- DataGridViewRowStateChangedEventArgs.cs
- OutputScopeManager.cs
- PointCollectionConverter.cs
- ModuleBuilderData.cs
- FieldMetadata.cs
- LinkedList.cs
- ClientScriptManager.cs
- DragCompletedEventArgs.cs
- SignatureConfirmationElement.cs
- recordstatescratchpad.cs
- SendingRequestEventArgs.cs
- FormViewDeletedEventArgs.cs
- ThreadLocal.cs
- ObjectStateEntryBaseUpdatableDataRecord.cs
- TextWriter.cs
- ScriptComponentDescriptor.cs
- _LazyAsyncResult.cs
- ConcurrencyBehavior.cs
- MLangCodePageEncoding.cs
- XmlAttributeCollection.cs
- ReadOnlyHierarchicalDataSource.cs
- FunctionDetailsReader.cs
- ScriptingRoleServiceSection.cs
- _IPv4Address.cs
- SemaphoreSecurity.cs
- ConfigXmlWhitespace.cs
- DSASignatureFormatter.cs
- BindingSourceDesigner.cs
- DataGridViewDataConnection.cs
- FixedDocument.cs
- ScriptResourceAttribute.cs
- SmtpNtlmAuthenticationModule.cs
- XmlElementElementCollection.cs
- TimeSpan.cs
- DataSourceControl.cs
- CodeTypeParameter.cs
- XmlDataImplementation.cs
- Conditional.cs
- ObjectQuery_EntitySqlExtensions.cs
- DefaultAssemblyResolver.cs
- UriTemplateVariablePathSegment.cs
- ClientSettingsStore.cs
- ResourceReader.cs
- FileChangesMonitor.cs
- WebPartChrome.cs
- SqlProvider.cs
- SqlCharStream.cs
- ObjectHandle.cs
- DbConnectionHelper.cs
- XmlWrappingReader.cs
- WindowsGrip.cs
- EmptyCollection.cs
- webbrowsersite.cs
- RadioButtonDesigner.cs
- ActivityValidationServices.cs
- MsmqIntegrationValidationBehavior.cs
- WmlTextBoxAdapter.cs
- Dump.cs
- MSG.cs
- DynamicResourceExtensionConverter.cs
- XpsS0ValidatingLoader.cs
- DataViewSetting.cs
- DocumentGridPage.cs
- DoubleAnimationClockResource.cs
- PreservationFileWriter.cs
- SessionChannels.cs
- StatusBarPanelClickEvent.cs
- FileDialogCustomPlace.cs
- Parser.cs
- FlowDocumentReader.cs
- ReadOnlyPropertyMetadata.cs
- BuildDependencySet.cs
- StyleBamlTreeBuilder.cs
- ResXDataNode.cs
- ToolStripGripRenderEventArgs.cs
- input.cs
- DBSchemaRow.cs
- Simplifier.cs
- Propagator.JoinPropagator.JoinPredicateVisitor.cs
- validation.cs
- SchemaObjectWriter.cs
- HttpConfigurationContext.cs