Commit 389166c0 authored by Brickner_cp's avatar Brickner_cp

Warnings, Code Analysis and Documentation. 130 warnings left.

parent 3bfa6609
......@@ -69,20 +69,20 @@ namespace PcapDotNet.Packets.Http
/// net_path = "//" authority [ abs_path ]
/// abs_path = "/" path_segments
/// query = *uric
/// uric_no_slash = unreserved | escaped | ";" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// uric_no_slash = unreserved | escaped | ";" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// uric = reserved | unreserved | escaped
/// authority = server | reg_name
/// path_segments = segment *( "/" segment )
/// unreserved = alphanum | mark
/// escaped = "%" hex hex
/// reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// server = [ [ userinfo "@" ] hostport ]
/// reg_name = 1*( unreserved | escaped | "$" | "," | ";" | ":" | "@" | "&" | "=" | "+" )
/// reg_name = 1*( unreserved | escaped | "$" | "," | ";" | ":" | "@" | "&" | "=" | "+" )
/// segment = *pchar *( ";" param )
/// mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
/// userinfo = *( unreserved | escaped | ";" | ":" | "&" | "=" | "+" | "$" | "," )
/// userinfo = *( unreserved | escaped | ";" | ":" | "&" | "=" | "+" | "$" | "," )
/// hostport = host [ ":" port ]
/// pchar = unreserved | escaped | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// pchar = unreserved | escaped | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// param = *pchar
/// host = hostname | IPv4address
/// port = *digit
......
......@@ -66,6 +66,7 @@
/// </para>
/// <para>
/// The response to a GET request is cacheable if and only if it meets the requirements for HTTP caching.
/// </para>
/// </summary>
Get,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment