Class ConferenceParams
Object defining parameters for a Conference.
Can be created by calling function CreateConferenceParams().
Inherited Members
Namespace: Linphone
Assembly: cs.temp.dll.dll
Syntax
public class ConferenceParams : LinphoneObject
Properties
AudioEnabled
Check whether audio capabilities are enabled.
Declaration
public bool AudioEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference supports audio capabilities, false otherwise |
ChatEnabled
Check whether chat capabilities are enabled.
Declaration
public bool ChatEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference supports chat capabilities, false otherwise |
IsAudioEnabled
Check whether audio capabilities are enabled.
Declaration
public bool IsAudioEnabled { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference supports audio capabilities, false otherwise |
IsChatEnabled
Check whether chat capabilities are enabled.
Declaration
public bool IsChatEnabled { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference supports chat capabilities, false otherwise |
IsLocalParticipantEnabled
Returns whether local participant has to enter the conference.
Declaration
public bool IsLocalParticipantEnabled { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if local participant is by default part of the conference, false otherwise |
IsOneParticipantConferenceEnabled
Returns whether conference can have only one participant.
Declaration
public bool IsOneParticipantConferenceEnabled { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference can have only one participant, false otherwise |
IsVideoEnabled
Check whether video capabilities are enabled.
Declaration
public bool IsVideoEnabled { get; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference supports video capabilities, false otherwise |
LocalParticipantEnabled
Returns whether local participant has to enter the conference.
Declaration
public bool LocalParticipantEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if local participant is by default part of the conference, false otherwise |
OneParticipantConferenceEnabled
Returns whether conference can have only one participant.
Declaration
public bool OneParticipantConferenceEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference can have only one participant, false otherwise |
VideoEnabled
Check whether video capabilities are enabled.
Declaration
public bool VideoEnabled { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | true if the conference supports video capabilities, false otherwise |
Methods
Clone()
Clone a ConferenceParams.
Declaration
public ConferenceParams Clone()
Returns
Type | Description |
---|---|
ConferenceParams | An allocated ConferenceParams with the same parameters than params |