Skip to content

Commit

Permalink
ResourceHandler - Rename CharSet to CharSet
Browse files Browse the repository at this point in the history
  • Loading branch information
amaitland committed Jun 21, 2019
1 parent 6925f7a commit 50df0db
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions CefSharp/ResourceHandler.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class ResourceHandler : IResourceHandler
public const string DefaultMimeType = "text/html";

/// <summary>
/// Gets or sets the CharSet
/// Gets or sets the Charset
/// </summary>
public string CharSet { get; set; }
public string Charset { get; set; }

/// <summary>
/// Gets or sets the Mime Type.
Expand Down Expand Up @@ -178,9 +178,9 @@ void IResourceHandler.GetResponseHeaders(IResponse response, out long responseLe
response.StatusText = StatusText;
response.Headers = Headers;

if (!string.IsNullOrEmpty(CharSet))
if (!string.IsNullOrEmpty(Charset))
{
response.Charset = CharSet;
response.Charset = Charset;
}

if (ResponseLength.HasValue)
Expand Down

0 comments on commit 50df0db

Please sign in to comment.