Code:
/ 4.0 / 4.0 / 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.
//------------------------------------------------------------------------------
//
// 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
- MinMaxParagraphWidth.cs
- TableItemPattern.cs
- FlowLayoutSettings.cs
- DataGridViewRowConverter.cs
- DataGridTableCollection.cs
- FileUpload.cs
- DbMetaDataColumnNames.cs
- DataTableReader.cs
- ObjectDataSourceEventArgs.cs
- XmlSchemaGroupRef.cs
- Lock.cs
- CultureSpecificCharacterBufferRange.cs
- CodeTypeReferenceExpression.cs
- ZoneButton.cs
- SafeViewOfFileHandle.cs
- CallbackException.cs
- AuthorizationSection.cs
- XmlSchemaImport.cs
- TableItemStyle.cs
- StyleTypedPropertyAttribute.cs
- TextParagraphCache.cs
- RowToFieldTransformer.cs
- ToolboxComponentsCreatingEventArgs.cs
- ValidationErrorEventArgs.cs
- EventProviderWriter.cs
- DisplayMemberTemplateSelector.cs
- DiagnosticsConfigurationHandler.cs
- BitmapFrame.cs
- PropertyChangingEventArgs.cs
- Stopwatch.cs
- CursorConverter.cs
- HttpCapabilitiesBase.cs
- TabControlCancelEvent.cs
- ParallelTimeline.cs
- XPathChildIterator.cs
- System.Data.OracleClient_BID.cs
- DesignerSerializerAttribute.cs
- DataSourceCacheDurationConverter.cs
- RelationshipConstraintValidator.cs
- RequestQueue.cs
- SystemException.cs
- MessageDecoder.cs
- RuntimeResourceSet.cs
- ToolTipAutomationPeer.cs
- TransformCryptoHandle.cs
- MsmqInputChannelListener.cs
- HtmlInputCheckBox.cs
- IndexedEnumerable.cs
- CachedPathData.cs
- EmptyStringExpandableObjectConverter.cs
- DataGridViewComboBoxColumn.cs
- StatusBar.cs
- SmiMetaData.cs
- UIAgentAsyncParams.cs
- RenderDataDrawingContext.cs
- XsdValidatingReader.cs
- ConnectionStringsExpressionBuilder.cs
- IfJoinedCondition.cs
- EmissiveMaterial.cs
- PeerCollaborationPermission.cs
- JoinTreeSlot.cs
- TemplatingOptionsDialog.cs
- DataGridViewComboBoxColumn.cs
- KeyProperty.cs
- SqlTypeConverter.cs
- XmlSerializerSection.cs
- VSDExceptions.cs
- SettingsPropertyNotFoundException.cs
- BrowserDefinition.cs
- PreviewKeyDownEventArgs.cs
- GatewayDefinition.cs
- CreateUserWizard.cs
- MergablePropertyAttribute.cs
- ExpanderAutomationPeer.cs
- SoapAttributeAttribute.cs
- MenuItemBindingCollection.cs
- WorkflowMarkupSerializationProvider.cs
- Int64Converter.cs
- ListParaClient.cs
- CompModHelpers.cs
- CompositeKey.cs
- SymbolEqualComparer.cs
- ProcessModelSection.cs
- SchemaTypeEmitter.cs
- BCLDebug.cs
- JoinCqlBlock.cs
- StylusButtonEventArgs.cs
- PeerCollaboration.cs
- HyperLink.cs
- ClientConvert.cs
- WindowsFormsSectionHandler.cs
- XmlNullResolver.cs
- ControlValuePropertyAttribute.cs
- httpstaticobjectscollection.cs
- LongValidatorAttribute.cs
- DataRelationCollection.cs
- ListControlStringCollectionEditor.cs
- SingleResultAttribute.cs
- LockCookie.cs
- Attributes.cs