Skip to content

Commit 1ee8f69

Browse files
authored
Support rendering target type. (#2041)
1 parent 725c76c commit 1ee8f69

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

lib/PuppeteerSharp/TargetType.cs

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,19 +58,19 @@ public enum TargetType
5858
Network,
5959

6060
/// <summary>
61-
/// Target type network
61+
/// Target type deprecation.
6262
/// </summary>
6363
[EnumMember(Value = "deprecation")]
6464
Deprecation,
6565

6666
/// <summary>
67-
/// Target type security
67+
/// Target type security.
6868
/// </summary>
6969
[EnumMember(Value = "security")]
7070
Security,
7171

7272
/// <summary>
73-
/// Target type recommendation
73+
/// Target type recommendation.
7474
/// </summary>
7575
[EnumMember(Value = "recommendation")]
7676
Recommendation,
@@ -86,5 +86,11 @@ public enum TargetType
8686
/// </summary>
8787
[EnumMember(Value = "iframe")]
8888
IFrame,
89+
90+
/// <summary>
91+
/// Target type rendering.
92+
/// </summary>
93+
[EnumMember(Value = "rendering")]
94+
Rendering,
8995
}
9096
}

0 commit comments

Comments
 (0)