14 writes to ActiveXState
System.Windows.Forms (14)
winforms\Managed\System\WinForms\WebBrowserBase.cs (10)
696this.ActiveXState++; // To exit the loop 732this.ActiveXState--; // To exit the loop 919this.ActiveXState = WebBrowserHelper.AXState.Loaded; 953this.ActiveXState = WebBrowserHelper.AXState.Passive; 980this.ActiveXState = WebBrowserHelper.AXState.Running; 1002this.ActiveXState = WebBrowserHelper.AXState.Loaded; 1022this.ActiveXState = WebBrowserHelper.AXState.InPlaceActive; 1043this.ActiveXState = WebBrowserHelper.AXState.Running; 1059this.ActiveXState = WebBrowserHelper.AXState.UIActive; 1070this.ActiveXState = WebBrowserHelper.AXState.InPlaceActive;
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (4)
286this.Host.ActiveXState = WebBrowserHelper.AXState.InPlaceActive; 294this.Host.ActiveXState = WebBrowserHelper.AXState.UIActive; 333this.Host.ActiveXState = WebBrowserHelper.AXState.InPlaceActive; 346this.Host.ActiveXState = WebBrowserHelper.AXState.Running;
35 references to ActiveXState
System.Windows.Forms (35)
winforms\Managed\System\WinForms\WebBrowserBase.cs (32)
254if (this.ActiveXState >= WebBrowserHelper.AXState.InPlaceActive) { 490if (this.ActiveXState >= WebBrowserHelper.AXState.InPlaceActive) { 548if (this.ActiveXState < WebBrowserHelper.AXState.UIActive) { 575return this.ActiveXState >= WebBrowserHelper.AXState.InPlaceActive ? 676while (state > this.ActiveXState) { 677switch (this.ActiveXState) { 680Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Loaded, "Failed transition"); 684Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Running, "Failed transition"); 688Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.InPlaceActive, "Failed transition"); 692Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.UIActive, "Failed transition"); 712while (state < this.ActiveXState) { 713switch (this.ActiveXState) { 716Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.InPlaceActive, "Failed transition"); 720Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Running, "Failed transition"); 724Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Loaded, "Failed transition"); 728Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Passive, "Failed transition"); 909Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Passive, "Wrong start state to transition from"); 910if (this.ActiveXState == WebBrowserHelper.AXState.Passive) { 929Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Loaded, "Wrong start state to transition from"); 930if (this.ActiveXState == WebBrowserHelper.AXState.Loaded) { 958Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Loaded, "Wrong start state to transition from"); 959if (this.ActiveXState == WebBrowserHelper.AXState.Loaded) { 985Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Running, "Wrong start state to transition from"); 986if (this.ActiveXState == WebBrowserHelper.AXState.Running) { 1007Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.Running, "Wrong start state to transition from"); 1008if (this.ActiveXState == WebBrowserHelper.AXState.Running) { 1027Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.InPlaceActive, "Wrong start state to transition from"); 1028if (this.ActiveXState == WebBrowserHelper.AXState.InPlaceActive) { 1048Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.InPlaceActive, "Wrong start state to transition from"); 1049if (this.ActiveXState == WebBrowserHelper.AXState.InPlaceActive) { 1064Debug.Assert(this.ActiveXState == WebBrowserHelper.AXState.UIActive, "Wrong start state to transition from"); 1065if (this.ActiveXState == WebBrowserHelper.AXState.UIActive) {
winforms\Managed\System\WinForms\WebBrowserSiteBase.cs (3)
225if (this.Host.ActiveXState >= WebBrowserHelper.AXState.InPlaceActive) { 332if (this.Host.ActiveXState > WebBrowserHelper.AXState.InPlaceActive) { 341if (this.Host.ActiveXState == WebBrowserHelper.AXState.UIActive) {