4 writes to data
System.Private.Xml.Linq (4)
System\Xml\Linq\XProcessingInstruction.cs (4)
35this.data = data; 48this.data = other.data; 54data = r.Value; 74data = value;
7 references to data
System.Private.Xml.Linq (7)
System\Xml\Linq\XProcessingInstruction.cs (7)
48this.data = other.data; 68return data; 124writer.WriteProcessingInstruction(target, data); 140return writer.WriteProcessingInstructionAsync(target, data); 151return other != null && target == other.target && data == other.data; 156return target.GetHashCode() ^ data.GetHashCode();