• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# Xml.XmlNodeChangedEventArgs类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中System.Xml.XmlNodeChangedEventArgs的典型用法代码示例。如果您正苦于以下问题:C# XmlNodeChangedEventArgs类的具体用法?C# XmlNodeChangedEventArgs怎么用?C# XmlNodeChangedEventArgs使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



XmlNodeChangedEventArgs类属于System.Xml命名空间,在下文中一共展示了XmlNodeChangedEventArgs类的20个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: AfterEvent

 internal virtual void AfterEvent(XmlNodeChangedEventArgs args)
 {
     if (args != null)
     {
         this.OwnerDocument.AfterEvent(args);
     }
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:7,代码来源:XmlNode.cs


示例2: AttributeChange

        private void AttributeChange(Object src, XmlNodeChangedEventArgs args)
        {
            XmlAttribute attribute = src as XmlAttribute;

            if(attribute.LocalName == "externalResourcesRequired")
            {
                externalResourcesRequired = null;
            }
        }
开发者ID:codebutler,项目名称:savagesvg,代码行数:9,代码来源:SvgExternalResourcesRequired.cs


示例3: OnListChanged

 private void OnListChanged( object sender, XmlNodeChangedEventArgs args ) {
     if( atomized == false ) {
         this.localName = this.rootNode.Document.NameTable.Add( this.localName );
         this.namespaceURI = this.rootNode.Document.NameTable.Add( this.namespaceURI );
         this.atomized = true;
     }                
     if ( IsMatch( args.Node ) ) {
         this.changeCount++ ;
         this.curInd = -1;
         this.curElem = rootNode;
         if( args.Action == XmlNodeChangedAction.Insert )
             this.empty = false;
     }
 }
开发者ID:ArildF,项目名称:masters,代码行数:14,代码来源:xmlelementlist.cs


示例4: ConcurrencyCheck

 internal void ConcurrencyCheck(XmlNodeChangedEventArgs args){
     if( atomized == false ) {
         XmlNameTable nameTable = this.rootNode.Document.NameTable;
         this.localName = nameTable.Add( this.localName );
         this.namespaceURI = nameTable.Add( this.namespaceURI );
         this.atomized = true;
     }                
     if ( IsMatch( args.Node ) ) {
         this.changeCount++ ;
         this.curInd = -1;
         this.curElem = rootNode;
         if( args.Action == XmlNodeChangedAction.Insert )
             this.empty = false;
     }
     this.matchCount = -1;
 }
开发者ID:iskiselev,项目名称:JSIL.NetFramework,代码行数:16,代码来源:XmlElementList.cs


示例5: AttributeChange

        private void AttributeChange(Object src, XmlNodeChangedEventArgs args)
        {
            XmlAttribute attribute = src as XmlAttribute;

            if(attribute.NamespaceURI.Length == 0)
            {
                switch(attribute.LocalName)
                {
                    case "viewBox":
                        viewBox = null;
                        break;
                    case "preserveAspectRatio":
                        preserveAspectRatio = null;
                        break;
                }
            }
        }
开发者ID:codebutler,项目名称:savagesvg,代码行数:17,代码来源:SvgFitToViewBox.cs


示例6: ConcurrencyCheck

 internal void ConcurrencyCheck(XmlNodeChangedEventArgs args)
 {
     if (_atomized == false)
     {
         XmlNameTable nameTable = _rootNode.Document.NameTable;
         _localName = nameTable.Add(_localName);
         _namespaceURI = nameTable.Add(_namespaceURI);
         _atomized = true;
     }
     if (IsMatch(args.Node))
     {
         _changeCount++;
         _curInd = -1;
         _curElem = _rootNode;
         if (args.Action == XmlNodeChangedAction.Insert)
             _empty = false;
     }
     _matchCount = -1;
 }
开发者ID:svcgany1,项目名称:corefx,代码行数:19,代码来源:XmlElementList.cs


示例7: HandleNodeChanged

		private void HandleNodeChanged(object sender, XmlNodeChangedEventArgs ea)
		{
			if (ea.Action == XmlNodeChangedAction.Change && ea.NewValue == ea.OldValue)
			{
				// A void change can be ignored.
				//
				return;
			}

			if (_changedNodes == null)
				_changedNodes = new Stack();

			_changedNodes.Push(new XmlNodeTrackBack(ea));

			// Propagate changes to parent object, if set.
			//
			if (_parent != null)
				_parent.OnPropertyChanged(_propertyInfo);
		}
开发者ID:epdumitru,项目名称:mysqlib,代码行数:19,代码来源:EditableXmlDocument.cs


示例8: OnListChanged

 private void OnListChanged(object sender, XmlNodeChangedEventArgs args)
 {
     lock (this)
     {
         if (this.elemList != null)
         {
             XmlElementList target = (XmlElementList) this.elemList.Target;
             if (target != null)
             {
                 target.ConcurrencyCheck(args);
             }
             else
             {
                 this.doc.NodeInserted -= this.nodeChangeHandler;
                 this.doc.NodeRemoved -= this.nodeChangeHandler;
                 this.elemList = null;
             }
         }
     }
 }
开发者ID:pritesh-mandowara-sp,项目名称:DecompliedDotNetLibraries,代码行数:20,代码来源:XmlElementListListener.cs


示例9: AttributeChange

        /// <summary>
        /// Called when any attribute is changing. This is typically triggered by calls to 
        /// setAttribute() and should only be called from the CssXmlDocument.
        /// </summary>
        /// <see cref="CssXmlDocument"/>
        public virtual void AttributeChange(Object src, XmlNodeChangedEventArgs args)
        {
            // Invalidate the CSS, the cascade for the CSS heirarchy will need to be recomputed
              // We do this before and after the change because we need to invalidate the old and new locations
              CssInvalidate();

              XmlAttribute attribute = src as XmlAttribute;

              if(attribute != null)
              {
            HandleAttributeChange(attribute);
              }

              // Notify any listeners
              FireAttributeChange(src, args);
              FireParentNodeChange(src, args, false);
              FireChildNodeChange(src, args, false);

              // Invalidate the CSS, the cascade for the CSS heirarchy will need to be recomputed
              CssInvalidate();
        }
开发者ID:codebutler,项目名称:savagesvg,代码行数:26,代码来源:CssXmlElement.cs


示例10: NodeRemovedUndo

 internal NodeRemovedUndo(XmlNodeChangedEventArgs e, object previous)
 {
     removedNode = e.Node;
     parentNode = e.OldParent;
     nextSibling = previous as XmlNode;
 }
开发者ID:mnisl,项目名称:OD,代码行数:6,代码来源:Undo.cs


示例11: PreviousState

		static internal object PreviousState(XmlNodeChangedEventArgs e)
		{
			return null;
		}
开发者ID:mnisl,项目名称:OD,代码行数:4,代码来源:Undo.cs


示例12: NodeInsertedUndo

 public NodeInsertedUndo(XmlNodeChangedEventArgs e, object previous)
 {
     iNode = e.Node;
 }
开发者ID:mnisl,项目名称:OD,代码行数:4,代码来源:Undo.cs


示例13: NodeChanged

		private void NodeChanged(object sender, XmlNodeChangedEventArgs e)
		{
			if (this._Undoing)
			{
				// if we're undoing ignore the event since it is the result of an undo
				_pState = null;
				_Undoing = false;
				return;
			}

			UndoItem undo = null;
			switch (e.Action)
			{
				case XmlNodeChangedAction.Insert:
					undo = new NodeInsertedUndo(e, _pState);
					break;
				case XmlNodeChangedAction.Remove:
					undo = new NodeRemovedUndo(e, _pState);
					break;
				case XmlNodeChangedAction.Change:
					undo = new NodeChangedUndo(e, _pState);
					break;
				default:
					throw new Exception("Unknown Action");
			}
			_pState = null;
			if (_currentUndoGroup != null)
			{
				_currentUndoGroup.AddUndoItem(undo);
			}
			else if (GroupsOnly)
			{
				_pState = null;
			}
			else
			{
				_actions.Push(undo);
			}
		}
开发者ID:mnisl,项目名称:OD,代码行数:39,代码来源:Undo.cs


示例14: EventNodeChanging

		private void EventNodeChanging (Object sender, XmlNodeChangedEventArgs e)
		{
			changing = true;
		}
开发者ID:jjenki11,项目名称:blaze-chem-rendering,代码行数:4,代码来源:XmlCharacterDataTests.cs


示例15: NodeRemoved

        protected void NodeRemoved(object sender, XmlNodeChangedEventArgs e)
        {
            XmlAttribute attr=GetAttributeFromEvent(e);
            if ( attr != null )
            {
                if ( e.OldParent != null && XmlUtil.HasAncestor(e.OldParent, attr.OwnerDocument.DocumentElement) )
                {
                    ValidateRemovedAttribute((XmlElement) e.OldParent, attr);
                    RemoveIdOrIdRef((XmlElement) e.OldParent, attr);
                }
                return;
            }

            switch ( e.Node.NodeType )
            {
                case XmlNodeType.Element:
                case XmlNodeType.EntityReference:
                    // remove this node and any child nodes
                    RecursiveRemove(e.Node);
                    XmlElement p=e.OldParent as XmlElement;
                    if ( p == null )
                        // go up dealing with entity references
                        p=XmlUtil.GetParentNode(e.Node) as XmlElement;

                    if ( p != null )
                        Validate(p);

                    break;

                default:
                    // any other cases?
                    break;
            }
        }
开发者ID:jugglingcats,项目名称:XEditNet,代码行数:34,代码来源:Validation.cs


示例16: NodeInserted

        protected void NodeInserted(object sender, XmlNodeChangedEventArgs e)
        {
            XmlAttribute attr=GetAttributeFromEvent(e);
            if ( attr != null )
            {
                // we deal with attributes differently
                if ( attr.OwnerElement != null && XmlUtil.HasAncestor(attr.OwnerElement, attr.OwnerDocument.DocumentElement) )
                    // owner element is part of doc, so validate
                    ValidateAttributeAddOrChange(attr);

                return;
            }

            Console.WriteLine("Node {0} inserted", e.Node.Name);

            if ( !XmlUtil.HasAncestor(e.NewParent, e.NewParent.OwnerDocument.DocumentElement) )
            {
                Console.WriteLine("Insert of {0} under {1}, is not part of doc", e.Node.Name, e.NewParent.Name);
                // new parent is not part of doc
                return;
            }

            XmlElement p=e.NewParent as XmlElement;
            if ( p == null )
                // must be entity reference
                p=(XmlElement) XmlUtil.GetParentNode(e.NewParent);

            RemoveValidationErrors(new ContextErrorFilter(e.Node));
            Console.WriteLine("Validating parent node {0}", e.NewParent.Name);
            Validate(p);

            XmlElement elem=e.Node as XmlElement;
            if ( elem != null )
                RecursiveInsert(elem);

            if ( e.OldParent != null )
                Validate((XmlElement) e.OldParent);
        }
开发者ID:jugglingcats,项目名称:XEditNet,代码行数:38,代码来源:Validation.cs


示例17: NodeChanging

        protected void NodeChanging(object sender, XmlNodeChangedEventArgs e)
        {
            // we're only interested in attribute nodes
            XmlAttribute attr=GetAttributeFromEvent(e);
            if ( attr == null || !XmlUtil.HasAncestor(attr.OwnerElement, attr.OwnerDocument.DocumentElement) )
                // attribute's parent is not part of the document
                return;

            RemoveIdOrIdRef(attr.OwnerElement, attr);
        }
开发者ID:jugglingcats,项目名称:XEditNet,代码行数:10,代码来源:Validation.cs


示例18: NodeChanged

        protected void NodeChanged(object sender, XmlNodeChangedEventArgs e)
        {
            // Fired when XmlNode.Value is changed
            // The only types that have non-null Value are:
            //	- Attribute (special case)
            //	- CDATASection (not significant for validation)
            //	- Comment (not significant for validation)
            //	- ProcessingInstruction (not significant for validation)
            //	- Text (not significant for validation when changed)
            //	- [Significant]Whitespace (not significant for validation)
            //	- XmlDeclaration (not significant for validation)

            Console.WriteLine("Node {0} changed", e.Node.Name);

            XmlAttribute attr=GetAttributeFromEvent(e);

            if ( attr == null || !XmlUtil.HasAncestor(attr.OwnerElement, attr.OwnerDocument.DocumentElement) )
                // attribute's parent is not part of the document
                return;

            ValidateAttributeAddOrChange(attr);
        }
开发者ID:jugglingcats,项目名称:XEditNet,代码行数:22,代码来源:Validation.cs


示例19: BeginInvoke

        /// <summary>
        /// Extends BeginInvoke so that when a state object is not needed, null does not need to be passed.
        /// <example>
        /// xmlnodechangedeventhandler.BeginInvoke(sender, e, callback);
        /// </example>
        /// </summary>
        public static IAsyncResult BeginInvoke(this XmlNodeChangedEventHandler xmlnodechangedeventhandler, Object sender, XmlNodeChangedEventArgs e, AsyncCallback callback)
        {
            if(xmlnodechangedeventhandler == null) throw new ArgumentNullException("xmlnodechangedeventhandler");

            return xmlnodechangedeventhandler.BeginInvoke(sender, e, callback, null);
        }
开发者ID:peteraritchie,项目名称:ProductivityExtensions,代码行数:12,代码来源:XmlNodeChangedEventHandlerable.g.cs


示例20: AttributeChange

        private void AttributeChange(Object src, XmlNodeChangedEventArgs args)
        {
            XmlAttribute attribute = src as XmlAttribute;

            if (attribute.NamespaceURI == SvgDocument.XLinkNamespace &&
                attribute.LocalName == "href")
            {
                href = null;
                absoluteUri = null;
            }
        }
开发者ID:jogibear9988,项目名称:SharpVectors,代码行数:11,代码来源:SvgUriReference.cs



注:本文中的System.Xml.XmlNodeChangedEventArgs类示例由纯净天空整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# Xml.XmlNodeList类代码示例发布时间:2022-05-26
下一篇:
C# Xml.XmlNode类代码示例发布时间:2022-05-26
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap