Efl.Net.Dialer_Http.authentication

Description

HTTP authentication to use.

This should be set before dialing.

Values

  • username - HTTP authentication username
  • password - HTTP authentication password
  • method - Authentication method to use. Defaults to Efl.Net.Http.Authentication_Method.basic
  • restricted - Restrict method

Signature

@property authentication {
    get {}
    set {}
    values {
        username: string;
        password: string;
        method: Efl.Net.Http.Authentication_Method @optional;
        restricted: bool @optional;
    }
}

C signature

void efl_net_dialer_http_authentication_get(const Eo *obj, const char **username, const char **password, Efl_Net_Http_Authentication_Method *method, Eina_Bool *restricted);
void efl_net_dialer_http_authentication_set(Eo *obj, const char *username, const char *password, Efl_Net_Http_Authentication_Method method, Eina_Bool restricted);

Implemented by