Lines Matching refs:participants
3 …ng the privilege (operation permissions) on the shared data, querying participants by data identif…
8 - **Participant**: all participants involved in a share, including the inviter and invitees.
1162 share(userId: number, bundleName: string, sharingResource: string, participants: Array<cloudData…
1164 …result. The application that initiates the share, shared resource ID, participants of the share ne…
1175 | participants | Array<[cloudData.sharing.Participant](js-apis-data-cloudData-sys.md#particip…
1192 …async share(userId: number, bundleName: string, sharingResource: string, participants: Array<Parti…
1199 participants.forEach((item => {
1217 unshare(userId: number, bundleName: string, sharingResource: string, participants: Array<cloudDa…
1219 …romise to return the result. The application, shared resource ID, and participants for the data to…
1230 | participants | Array<[cloudData.sharing.Participant](js-apis-data-cloudData-sys.md#particip…
1247 …async unshare(userId: number, bundleName: string, sharingResource: string, participants: Array<Par…
1254 participants.forEach((item => {
1316 changePrivilege(userId: number, bundleName: string, sharingResource: string, participants: Array<…
1318 …se to return the result. The application, shared resource ID, and the participants with new privil…
1329 | participants | Array<[cloudData.sharing.Participant](js-apis-data-cloudData-sys.md#particip…
1346 …async changePrivilege(userId: number, bundleName: string, sharingResource: string, participants: A…
1353 participants.forEach((item => {
1373 Queries the participants of a share. This API uses a promise to return the result. The application …
1389 …a-cloudData-sys.md#participant11)>>> | Promise used to return the participants obtained. |
1402 console.info(`query participants, bundle: ${bundleName}`);
1406 let participants = new Array<cloudData.sharing.Participant>();
1407 participants.push({
1420 participants.push({
1435 description: 'query participants succeeded',
1436 value: participants
1447 Queries the participants of a share based on the invitation code. This API uses a promise to return…
1463 …a-cloudData-sys.md#participant11)>>> | Promise used to return the participants obtained. |
1476 console.info(`query participants by invitation, bundle: ${bundleName}`);
1480 let participants = new Array<cloudData.sharing.Participant>();
1481 participants.push({
1494 participants.push({
1509 description: 'query participants by invitation succeeded',
1510 value: participants
1734 …async share(userId: number, bundleName: string, sharingResource: string, participants: Array<Parti…
1741 participants.forEach((item => {
1754 …async unshare(userId: number, bundleName: string, sharingResource: string, participants: Array<Par…
1761 participants.forEach((item => {
1786 …async changePrivilege(userId: number, bundleName: string, sharingResource: string, participants: A…
1793 participants.forEach((item => {
1808 console.info(`query participants, bundle: ${bundleName}`);
1812 let participants = new Array<cloudData.sharing.Participant>();
1813 participants.push({
1826 participants.push({
1841 description: 'query participants succeeded',
1842 value: participants
1848 console.info(`query participants by invitation, bundle: ${bundleName}`);
1852 let participants = new Array<cloudData.sharing.Participant>();
1853 participants.push({
1866 participants.push({
1881 description: 'query participants by invitation succeeded',
1882 value: participants