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.
This commit is contained in:
@@ -493,8 +493,17 @@ namespace ReC.Client
|
|||||||
/// </summary>
|
/// </summary>
|
||||||
public enum ResultType
|
public enum ResultType
|
||||||
{
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Returns both header and body.
|
||||||
|
/// </summary>
|
||||||
Full,
|
Full,
|
||||||
|
/// <summary>
|
||||||
|
/// Returns only the header portion of the result.
|
||||||
|
/// </summary>
|
||||||
OnlyHeader,
|
OnlyHeader,
|
||||||
|
/// <summary>
|
||||||
|
/// Returns only the body portion of the result.
|
||||||
|
/// </summary>
|
||||||
OnlyBody
|
OnlyBody
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user