Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 829 Bytes

sip.js.uri._constructor_.md

File metadata and controls

29 lines (21 loc) · 829 Bytes

Home > sip.js > URI > (constructor)

URI.(constructor)

Constructor

Signature:

constructor(scheme: string | undefined, user: string, host: string, port?: number, parameters?: {
        [name: string]: string | number | null;
    }, headers?: {
        [name: string]: Array<string>;
    });

Parameters

Parameter Type Description
scheme string | undefined
user string
host string
port number
parameters { [name: string]: string | number | null; }
headers { [name: string]: Array<string>; }