class HAR::Request
- HAR::Request
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
har/json_mapping.crConstructors
- .new(method : String, url : String, http_version : String, headers_size : Int32 | Nil = -1, body_size : Int32 | Nil = -1)
- .new(pull : JSON::PullParser)
Instance Method Summary
- #body_size : Int32 | Nil
- #body_size=(body_size : Int32 | Nil)
- #comment : String | Nil
- #comment=(comment : String | Nil)
- #cookies : Array(Cookie)
- #cookies=(cookies : Array(Cookie))
- #fragments : Array(String) | Nil
- #fragments=(fragments : Array(String) | Nil)
- #headers : Array(Header)
- #headers=(headers : Array(Header))
- #headers_size : Int32 | Nil
- #headers_size=(headers_size : Int32 | Nil)
- #http_version : String
- #http_version=(http_version : String)
- #method : String
- #method=(method : String)
- #post_data : PostData | Nil
- #post_data=(post_data : PostData | Nil)
- #query_string : Array(QueryString)
- #query_string=(query_string : Array(QueryString))
- #url : String
- #url=(url : String)
Constructor Detail
def self.new(method : String, url : String, http_version : String, headers_size : Int32 | Nil = -1, body_size : Int32 | Nil = -1)
#