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
Enable audio capabilities.
Declaration
public bool AudioEnabled { set; }
Property Value
Type | Description |
---|---|
System.Boolean |
ChatEnabled
Enable chat capabilities.
Declaration
public bool ChatEnabled { set; }
Property Value
Type | Description |
---|---|
System.Boolean |
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
Enable local participant to enter the conference.
The local participant is the one driving the local Core. It uses the local sound devices. The default value is true. Setting to false is mostly helpful when using liblinphone on a server application.
Declaration
public bool LocalParticipantEnabled { set; }
Property Value
Type | Description |
---|---|
System.Boolean |
OneParticipantConferenceEnabled
Enable conference with one participant.
Declaration
public bool OneParticipantConferenceEnabled { set; }
Property Value
Type | Description |
---|---|
System.Boolean |
VideoEnabled
Enable video capabilities.
Declaration
public bool VideoEnabled { set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Methods
Clone()
Clone a ConferenceParams.
Declaration
public ConferenceParams Clone()
Returns
Type | Description |
---|---|
ConferenceParams | An allocated ConferenceParams with the same parameters than params |