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 ...@@ -69,20 +69,20 @@ namespace PcapDotNet.Packets.Http
/// net_path = "//" authority [ abs_path ] /// net_path = "//" authority [ abs_path ]
/// abs_path = "/" path_segments /// abs_path = "/" path_segments
/// query = *uric /// query = *uric
/// uric_no_slash = unreserved | escaped | ";" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | "," /// uric_no_slash = unreserved | escaped | ";" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// uric = reserved | unreserved | escaped /// uric = reserved | unreserved | escaped
/// authority = server | reg_name /// authority = server | reg_name
/// path_segments = segment *( "/" segment ) /// path_segments = segment *( "/" segment )
/// unreserved = alphanum | mark /// unreserved = alphanum | mark
/// escaped = "%" hex hex /// escaped = "%" hex hex
/// reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | "," /// reserved = ";" | "/" | "?" | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// server = [ [ userinfo "@" ] hostport ] /// server = [ [ userinfo "@" ] hostport ]
/// reg_name = 1*( unreserved | escaped | "$" | "," | ";" | ":" | "@" | "&" | "=" | "+" ) /// reg_name = 1*( unreserved | escaped | "$" | "," | ";" | ":" | "@" | "&" | "=" | "+" )
/// segment = *pchar *( ";" param ) /// segment = *pchar *( ";" param )
/// mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")" /// mark = "-" | "_" | "." | "!" | "~" | "*" | "'" | "(" | ")"
/// userinfo = *( unreserved | escaped | ";" | ":" | "&" | "=" | "+" | "$" | "," ) /// userinfo = *( unreserved | escaped | ";" | ":" | "&" | "=" | "+" | "$" | "," )
/// hostport = host [ ":" port ] /// hostport = host [ ":" port ]
/// pchar = unreserved | escaped | ":" | "@" | "&" | "=" | "+" | "$" | "," /// pchar = unreserved | escaped | ":" | "@" | "&" | "=" | "+" | "$" | ","
/// param = *pchar /// param = *pchar
/// host = hostname | IPv4address /// host = hostname | IPv4address
/// port = *digit /// port = *digit
......
...@@ -66,6 +66,7 @@ ...@@ -66,6 +66,7 @@
/// </para> /// </para>
/// <para> /// <para>
/// The response to a GET request is cacheable if and only if it meets the requirements for HTTP caching. /// The response to a GET request is cacheable if and only if it meets the requirements for HTTP caching.
/// </para>
/// </summary> /// </summary>
Get, 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