mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-16 13:15:03 +00:00
feat:(Essentials) Add IHasPresentationOnlyMeeting interface
This commit is contained in:
@@ -122,6 +122,7 @@
|
|||||||
<Compile Include="Display\PanasonicThDisplay.cs" />
|
<Compile Include="Display\PanasonicThDisplay.cs" />
|
||||||
<Compile Include="VideoCodec\Interfaces\IHasMeetingInfo.cs" />
|
<Compile Include="VideoCodec\Interfaces\IHasMeetingInfo.cs" />
|
||||||
<Compile Include="VideoCodec\Interfaces\IHasParticipants.cs" />
|
<Compile Include="VideoCodec\Interfaces\IHasParticipants.cs" />
|
||||||
|
<Compile Include="VideoCodec\Interfaces\IHasPresentationOnlyMeeting.cs" />
|
||||||
<Compile Include="VideoCodec\Interfaces\IHasSelfviewPosition.cs" />
|
<Compile Include="VideoCodec\Interfaces\IHasSelfviewPosition.cs" />
|
||||||
<Compile Include="VideoCodec\Interfaces\IHasSelfviewSize.cs" />
|
<Compile Include="VideoCodec\Interfaces\IHasSelfviewSize.cs" />
|
||||||
<Compile Include="VideoCodec\Interfaces\IHasStartMeeting.cs" />
|
<Compile Include="VideoCodec\Interfaces\IHasStartMeeting.cs" />
|
||||||
|
|||||||
@@ -0,0 +1,18 @@
|
|||||||
|
namespace PepperDash.Essentials.Devices.Common.VideoCodec.Interfaces
|
||||||
|
{
|
||||||
|
public interface IHasPresentationOnlyMeeting
|
||||||
|
{
|
||||||
|
void StartSharingOnlyMeeting();
|
||||||
|
void StartSharingOnlyMeeting(eSharingMeetingMode mode);
|
||||||
|
void StartSharingOnlyMeeting(eSharingMeetingMode mode, ushort duration);
|
||||||
|
void StartSharingOnlyMeeting(eSharingMeetingMode mode, ushort duration, string password);
|
||||||
|
void StartNormalMeetingFromSharingOnlyMeeting();
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum eSharingMeetingMode
|
||||||
|
{
|
||||||
|
None,
|
||||||
|
Laptop,
|
||||||
|
Ios,
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user