Skip to content

Commit

Permalink
Make CustomResponseBuilder property setter public (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
flobernd authored Mar 21, 2024
1 parent d9cfa11 commit e681f15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Elastic.Transport/Requests/RequestParameters.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public abstract class RequestParameters
/// <summary>
///
/// </summary>
public CustomResponseBuilder CustomResponseBuilder { get; internal set; }
public CustomResponseBuilder CustomResponseBuilder { get; set; }

/// <summary>
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public string DebugInformation
/// <summary>
///
/// </summary>
internal string ResponseMimeType { get; set; }
public string ResponseMimeType { get; set; }

/// <summary>
///
Expand Down

0 comments on commit e681f15

Please sign in to comment.