class HAR::Request
- HAR::Request
- Reference
- Object
Included Modules
- JSON::Serializable
Defined in:
har/json_mapping.crConstructors
- .new(method : String, url : String, httpVersion : String, headersSize : Int32 | Nil = -1, bodySize : Int32 | Nil = -1)
- .new(pull : JSON::PullParser)
Instance Method Summary
- #bodySize : Int32 | Nil
- #bodySize=(bodySize : 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))
- #headersSize : Int32 | Nil
- #headersSize=(headersSize : Int32 | Nil)
- #httpVersion : String
- #httpVersion=(httpVersion : String)
- #method : String
- #method=(method : String)
- #postData : PostData | Nil
- #postData=(postData : PostData | Nil)
- #queryString : Array(QueryString)
- #queryString=(queryString : Array(QueryString))
- #url : String
- #url=(url : String)
Constructor Detail
def self.new(method : String, url : String, httpVersion : String, headersSize : Int32 | Nil = -1, bodySize : Int32 | Nil = -1)
#