File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -19,9 +19,8 @@ public enum TransitionType : uint
19
19
LinkClicked = 0 ,
20
20
21
21
/// <summary>
22
- /// Source is some other "explicit" navigation action such as creating a new
23
- /// browser or using the LoadURL function. This is also the default value
24
- /// for navigations where the actual type is unknown.
22
+ /// Source is some other "explicit" navigation. This is the default value for
23
+ /// navigations where the actual type is unknown. See also <see cref="DirectLoad"/>.
25
24
/// </summary>
26
25
Explicit = 1 ,
27
26
@@ -69,9 +68,15 @@ public enum TransitionType : uint
69
68
70
69
/// <summary>
71
70
/// Used the Forward or Back function to navigate among browsing history.
71
+ /// Will be ORed to the transition type for the original load.
72
72
/// </summary>
73
73
ForwardBack = 0x01000000 ,
74
74
75
+ /// <summary>
76
+ /// Loaded a URL directly via CreateBrowser, LoadURL or LoadRequest.
77
+ /// </summary>
78
+ DirectLoad = 0x02000000 ,
79
+
75
80
/// <summary>
76
81
/// The beginning of a navigation chain.
77
82
/// </summary>
You can’t perform that action at this time.
0 commit comments