7 writes to node
System.Data (7)
fx\src\data\System\NewXml\DataPointer.cs (7)
24this.node = node; 34this.node = pointer.node; 86this.node = pointer.node; 96this.node = node; 107this.node = node; 552this.node = n; 692this.node = null;
68 references to node
System.Data (68)
fx\src\data\System\NewXml\DataPointer.cs (68)
34this.node = pointer.node; 52rowElem = this.node as XmlBoundElement; 58doc.Mapper.GetRegion( this.node, out rowElem ); 83Debug.Assert( node == this.doc || node.OwnerDocument == this.doc ); 86this.node = pointer.node; 155if (node == null) 165else if (!IsFoliated( node )) { 169MoveTo( node, c, doc.IsTextOnly(c) ); 175XmlNode n = doc.SafeFirstChild( node ); 187if (node != null) { 194MoveTo( this.node, c, false ); 198XmlNode n = doc.SafeFirstChild( node ); 205XmlNode n = doc.SafeNextSibling( node ); 219if (node != null) { 222MoveTo( node, column, false ); 227MoveTo( node, null, false ); 232XmlNode n = node.ParentNode; 245if (node != null) { 250MoveTo( node, null, false ); 253else if (node.NodeType == XmlNodeType.Attribute) { 254XmlNode n = ((XmlAttribute)node).OwnerElement; 270if (node != null) { 271if (column == null && node.NodeType == XmlNodeType.Element) { 272if (!IsFoliated( node )) { 276return node.Attributes.Count; 288if (node != null) { 289if ((column == null || column.ColumnMapping == MappingType.Attribute) && node.NodeType == XmlNodeType.Element) { 290if (!IsFoliated( node )) { 293MoveTo( node, c, false ); 298XmlNode n = node.Attributes.Item(i); 313if (this.node == null) { 317return this.node.NodeType; 335if (this.node == null) { 338String name = node.LocalName; 340if ( IsLocalNameEmpty( this.node.NodeType ) ) 357if (this.node == null) { 361return node.NamespaceURI; 376if (this.node == null) { 380String name = node.Name; 383if ( IsLocalNameEmpty( this.node.NodeType ) ) 437if (this.node == null) { 441return node.Prefix; 453if (this.node == null) { 457return this.node.Value; 476return nodeToCheck == this.node; 485return this.node; 492if (node != null && column == null) { 494if (node.NodeType == XmlNodeType.Element) { 495return((XmlElement)node).IsEmpty; 506if (node != null && column == null && node.NodeType == XmlNodeType.Attribute) { 507return !((XmlAttribute)node).Specified; 516if (node == foliatedNode) { 531n = node.FirstChild; 535n = node.Attributes.GetNamedItem( column.EncodedColumnName, column.Namespace ); 538for (n = node.FirstChild; n != null; n = n.NextSibling) { 567return ( ( XmlDocumentType ) (this.node)).PublicId; 571return ( ( XmlEntity ) (this.node)).PublicId; 575return ( ( XmlNotation ) (this.node)).PublicId; 588return ( ( XmlDocumentType ) (this.node)).SystemId; 592return ( ( XmlEntity ) (this.node)).SystemId; 596return ( ( XmlNotation ) (this.node)).SystemId; 607return ( ( XmlDocumentType ) (this.node)).InternalSubset; 626return ( ( XmlDeclaration ) (this.node)).Encoding; 640return ( ( XmlDeclaration ) (this.node)).Standalone; 654return ( ( XmlDeclaration ) (this.node)).Version; 669XmlBoundElement rowElem = this.node as XmlBoundElement;