Class Ldap
Object that represents a Linphone Ldap.
Use a Linphone.LdapParams object to configure it.
Inherited Members
Namespace: Linphone
Assembly: cs.temp.dll.dll
Syntax
public class Ldap : LinphoneObject
Properties
Core
Get the Linphone.Core object to which is associated the Linphone.Ldap.
Declaration
public Core Core { get; }
Property Value
Type | Description |
---|---|
Core | The Linphone.Core object to which is associated the Linphone.Ldap. |
Index
Get the index of the Linphone.Ldap.
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The index of the Ldap |
Params
Get the Linphone.LdapParams as read-only object.
To make changes, clone the returned object using Linphone.LdapParams.Clone() method, make your changes on it and apply them using with Linphone.Ldap.Params.
Declaration
public LdapParams Params { get; set; }
Property Value
Type | Description |
---|---|
LdapParams | The Linphone.LdapParams attached to this ldap. |
Methods
NewWithParams(Core, LdapParams)
Create a new Linphone.Ldap, associate it with the Linphone.LdapParams and store it into the configuration file.
Declaration
public static Ldap NewWithParams(Core lc, LdapParams parameters)
Parameters
Type | Name | Description |
---|---|---|
Core | lc | The Linphone.Core object. |
LdapParams | parameters | The Linphone.LdapParams object. |
Returns
Type | Description |
---|---|
Ldap | The newly created Linphone.Ldap object. |