Skip to content
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

WebCmdlets parse XML declaration to get encoding value, if present. #18748

Merged
merged 10 commits into from
Jan 21, 2023
Prev Previous commit
Next Next commit
#endregion
  • Loading branch information
CarloToso committed Dec 8, 2022
commit 13c0ad9becf1adb596a6b96cea8b14a2d8e0c745
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ internal class WebResponseContentMemoryStream : MemoryStream
private bool _isInitialized = false;
private readonly Cmdlet _ownerCmdlet;

#endregion
#endregion Data

#region Constructors
/// <summary>
Expand All @@ -45,7 +45,7 @@ internal WebResponseContentMemoryStream(Stream stream, int initialCapacity, Cmdl
_originalStreamToProxy = stream;
_ownerCmdlet = cmdlet;
}
#endregion
#endregion Constructors

/// <summary>
/// </summary>
Expand Down