-
Notifications
You must be signed in to change notification settings - Fork 3
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
Refactor UrlInfo
into immutable record
#363
Conversation
{ | ||
[DebuggerStepThrough] get; | ||
set { | ||
field = value; |
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.
validate port >= 0 and <= 65535
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.
The URI RFC does not define port limits:
https://www.rfc-editor.org/rfc/rfc3986#section-3.2.3
Yes, for TCP it is 16-bit. But
UrlInfo` is considered to be more general
{ | ||
[DebuggerStepThrough] get; | ||
set { | ||
field = value; |
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.
validate with current regex pattern and parse logic.
{ | ||
[DebuggerStepThrough] get => field; | ||
set { | ||
field = value; |
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.
validate with current regex pattern and parse logic.
UrlInfo
into record
UrlInfo
into immutable record
This will allow to modify
UrlInfo
properties by C#with
operator.The
.Url
&.ToString()
will synchronize with the updated property.The behavior change:
UrlInfo.Params
is nowSortedDictionary
Without this the order of parameteres in
.Url
was non-deterministic.UrlInfo
parsed from URLs with different order of parameters are considered as Equal now.