From b65810bbbbbfa2bbc8111125ba9ca803dc0c1bec Mon Sep 17 00:00:00 2001 From: TekH Date: Fri, 16 Jan 2026 11:05:17 +0100 Subject: [PATCH] Add XML docs to ResultType enum members Added summary XML documentation to each member of the ResultType enum in the ReC.Client namespace, clarifying the purpose of Full, OnlyHeader, and OnlyBody options. --- src/ReC.Client/ReCClient.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/ReC.Client/ReCClient.cs b/src/ReC.Client/ReCClient.cs index 11a4713..e337664 100644 --- a/src/ReC.Client/ReCClient.cs +++ b/src/ReC.Client/ReCClient.cs @@ -493,8 +493,17 @@ namespace ReC.Client /// public enum ResultType { + /// + /// Returns both header and body. + /// Full, + /// + /// Returns only the header portion of the result. + /// OnlyHeader, + /// + /// Returns only the body portion of the result. + /// OnlyBody } } \ No newline at end of file