XMLHttpRequest.open

Undocumented in source. Be warned that the author may not have intended to support it.
  1. void open(string method, string url)
  2. void open(string method, string url, bool async, Optional!(T3) username, Optional!(T4) password)
    struct XMLHttpRequest
    nothrow
    void
    open
    (
    T3
    T4
    )
    (
    string method
    ,
    string url
    ,
    bool async
    ,
    scope auto ref Optional!(T3) username
    ,
    scope auto ref Optional!(T4) password
    )
    if (
    isTOrPointer!(T3, string) &&
    isTOrPointer!(T4, string)
    )
  3. void open(string method, string url, bool async, Optional!(T3) username)
  4. void open(string method, string url, bool async)

Meta