ConferenceParams
public class ConferenceParams : LinphoneObject
Object defining parameters for a Conference
.
Can be created by calling function Core.createConferenceParams().
-
Undocumented
Declaration
Swift
public static func getSwiftObject(cObject: OpaquePointer) -> ConferenceParams
-
Undocumented
Declaration
Swift
public var getCobject: OpaquePointer? { get }
-
Check whether audio capabilities are enabled.
Declaration
Swift
public var audioEnabled: Bool { get set }
Return Value
true if the conference supports audio capabilities, false otherwise
-
Check whether chat capabilities are enabled.
Declaration
Swift
public var chatEnabled: Bool { get set }
Return Value
true if the conference supports chat capabilities, false otherwise
-
Check whether audio capabilities are enabled.
- deprecated: 16/12/2021 Use audioEnabled() instead.
Declaration
Swift
@available(*, deprecated) public var isAudioEnabled: Bool { get }
Return Value
true if the conference supports audio capabilities, false otherwise
-
Check whether chat capabilities are enabled.
- deprecated: 16/12/2021 Use chatEnabled() instead.
Declaration
Swift
@available(*, deprecated) public var isChatEnabled: Bool { get }
Return Value
true if the conference supports chat capabilities, false otherwise
-
Returns whether local participant has to enter the conference.
- deprecated: 16/12/2021 Use localParticipantEnabled() instead.
Declaration
Swift
@available(*, deprecated) public var isLocalParticipantEnabled: Bool { get }
Return Value
true if local participant is by default part of the conference, false otherwise
-
Returns whether conference can have only one participant.
- deprecated: 16/12/2021 Use oneParticipantConferenceEnabled() instead.
Declaration
Swift
@available(*, deprecated) public var isOneParticipantConferenceEnabled: Bool { get }
Return Value
true if the conference can have only one participant, false otherwise
-
Check whether video capabilities are enabled.
- deprecated: 16/12/2021 Use videoEnabled() instead.
Declaration
Swift
@available(*, deprecated) public var isVideoEnabled: Bool { get }
Return Value
true if the conference supports video capabilities, false otherwise
-
Returns whether local participant has to enter the conference.
Declaration
Swift
public var localParticipantEnabled: Bool { get set }
Return Value
true if local participant is by default part of the conference, false otherwise
-
Returns whether conference can have only one participant.
Declaration
Swift
public var oneParticipantConferenceEnabled: Bool { get set }
Return Value
true if the conference can have only one participant, false otherwise
-
Check whether video capabilities are enabled.
Declaration
Swift
public var videoEnabled: Bool { get set }
Return Value
true if the conference supports video capabilities, false otherwise
-
Clone a
ConferenceParams
.Declaration
Swift
public func clone() -> ConferenceParams?
Return Value
An allocated
ConferenceParams
with the same parameters than params