Meeting SDK for Windows API Reference
Loading...
Searching...
No Matches
IDirectShareServiceHelper Class Referenceabstract

Direct sharing helper Interface. More...

#include <direct_share_helper_interface.h>

Public Member Functions

virtual SDKError SetEvent (IDirectShareServiceHelperEvent *pEvent)=0
 Direct sharing helper callback event handler.
 
virtual SDKError CanStartDirectShare ()=0
 Determines if it is able to start the direct sharing.
 
virtual bool IsDirectShareInProgress ()=0
 Determines if direct sharing is in progress.
 
virtual SDKError StartDirectShare ()=0
 Starts direct sharing.
 
virtual SDKError StopDirectShare ()=0
 Stops direct sharing.
 

Detailed Description

Direct sharing helper Interface.

Definition at line 106 of file direct_share_helper_interface.h.

Member Function Documentation

◆ CanStartDirectShare()

virtual SDKError IDirectShareServiceHelper::CanStartDirectShare ( )
pure virtual

Determines if it is able to start the direct sharing.

Returns
If it is enabled to start the direct sharing, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.

◆ IsDirectShareInProgress()

virtual bool IDirectShareServiceHelper::IsDirectShareInProgress ( )
pure virtual

Determines if direct sharing is in progress.

Returns
true indicates that the direct sharing is in progress.

◆ SetEvent()

virtual SDKError IDirectShareServiceHelper::SetEvent ( IDirectShareServiceHelperEvent * pEvent)
pure virtual

Direct sharing helper callback event handler.

Parameters
pEventA pointer to the IDirectShareServiceHelperEvent that receives the direct sharing service event.
Returns
If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.

◆ StartDirectShare()

virtual SDKError IDirectShareServiceHelper::StartDirectShare ( )
pure virtual

Starts direct sharing.

Returns
If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.
Note
This API can only be called by the logged in user.

◆ StopDirectShare()

virtual SDKError IDirectShareServiceHelper::StopDirectShare ( )
pure virtual

Stops direct sharing.

Returns
If the function succeeds, the return value is SDKERR_SUCCESS. Otherwise, this function returns an error.
Note
This API can only be called by the logged in user.