14 writes to DocumentText
System.Windows.Forms (2)
System\Windows\Forms\Controls\WebBrowser\WebBrowser.cs (2)
838
DocumentText
= text;
865
DocumentText
= text;
System.Windows.Forms.Tests (12)
System\Windows\Forms\WebBrowserTests.cs (12)
690
DocumentText
= value
698
control.
DocumentText
= value;
715
control.
DocumentText
= value;
722
control.
DocumentText
= value;
789
await Task.Run(() => control.
DocumentText
= Html);
803
await Task.Run(() => control.
DocumentText
= Html);
816
control.
DocumentText
= null;
822
control.
DocumentText
= string.Empty;
837
Assert.Throws<ObjectDisposedException>(() => control.
DocumentText
= null);
849
Assert.Throws<InvalidOperationException>(() => control.
DocumentText
= null);
4026
await Task.Run(() => control.
DocumentText
= Html);
4175
await Task.Run(() => control.
DocumentText
= Html);
21 references to DocumentText
System.Windows.Forms (2)
System\Windows\Forms\Controls\WebBrowser\WebBrowser.cs (2)
836
string text =
DocumentText
;
863
string text =
DocumentText
;
System.Windows.Forms.Tests (19)
System\Windows\Forms\WebBrowserTests.cs (19)
582
Assert.Equal(Html, control.
DocumentText
);
588
Assert.Equal(Html, control.
DocumentText
);
620
Assert.Empty(control.
DocumentText
);
634
Assert.Empty(control.
DocumentText
);
655
string documentText = control.
DocumentText
;
656
Assert.Equal(documentText, control.
DocumentText
);
657
Assert.NotSame(documentText, control.
DocumentText
);
669
Assert.Throws<ObjectDisposedException>(() => control.
DocumentText
);
681
Assert.Throws<InvalidOperationException>(() => control.
DocumentText
);
692
Assert.NotEmpty(control.
DocumentText
);
693
Assert.DoesNotContain('\0', control.
DocumentText
);
699
Assert.NotEmpty(control.
DocumentText
);
700
Assert.DoesNotContain('\0', control.
DocumentText
);
716
Assert.NotEmpty(control.
DocumentText
);
717
Assert.DoesNotContain('\0', control.
DocumentText
);
723
Assert.NotEmpty(control.
DocumentText
);
724
Assert.DoesNotContain('\0', control.
DocumentText
);
818
Assert.Equal(Html, control.
DocumentText
);
824
Assert.Equal(Html, control.
DocumentText
);