Lines Matching refs:domain
3 …PIs to query the mappings between applications and domain names for the purposes of application do…
19 …system_basic | Allows an application to access the mappings between applications and domain names.|
27 Queries the list of domain names associated with an application based on its bundle name.
45 | string[] | List of domain names associated with the bundle name. If no domain name is associated,…
63 // Obtain the list of domain names associated with the bundle name "com.example.app1".
66 domains.forEach(domain => {
67 console.log(`app:${bundleName} associate with domain:${domain}`);
73 queryAssociatedBundleNames(domain: string): string[]
75 Obtains the list of bundle names associated with a domain name.
87 | domain | string | Yes | Domain name. |
93 | string[] | List of bundle names associated with the domain name. If no application is associated,…
111 // Obtain the list of bundle names associated with the domain name "example.com".
112 let domain = "example.com";
113 let bundleNames = appDomainVerify.queryAssociatedBundleNames(domain);
115 console.log(`domain:${domain} associate with app:${bundleName}`);