-
Notifications
You must be signed in to change notification settings - Fork 245
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore(generator): Response and Request #1270
Conversation
/// <summary><para>Gets the <see cref="System.Net.HttpStatusCode"/> code of the response.</para></summary> | ||
System.Net.HttpStatusCode StatusCode { get; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't this go in a different file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's auto-generated now :-) See same upstream PR: microsoft/playwright#5763
@@ -71,7 +71,6 @@ internal static JsonSerializerOptions GetNewDefaultSerializerOptions(bool ignore | |||
IgnoreNullValues = ignoreNullValues, | |||
Converters = | |||
{ | |||
new FlexibleStringEnumConverter<ResourceType>(ResourceType.Unknown), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I bet we would still need this
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not for ResourceType
though. It's removed.
No description provided.