Class CardDavParams
The Linphone.CardDavParams object represents a remote CardDAV server used by Linphone.MagicSearch as a plugin source.
Inherited Members
Namespace: Linphone
Assembly: cs.temp.dll.dll
Syntax
public class CardDavParams : LinphoneObject
Properties
DomainFields
Gets the list of vCard RFC fields to use to match the domain filter on.
For example you can use "IMPP".
Declaration
public IEnumerable<string> DomainFields { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> | The list of vCard fields to make the query on using domain filter. |
UseExactMatchPolicy
Gets the matching policy: true if the remote vCard value must match the filter exactly, false if it only needs to contain the filter.
Declaration
public bool UseExactMatchPolicy { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean | The matching policy: true if the remote vCard value must match the filter exactly, false if it only needs to contain the filter. |
UserInputFields
Gets the list of vCard RFC fields to use to match user input text on.
For example you can use "FN", "N", "IMPP", "ORG", etc...
Declaration
public IEnumerable<string> UserInputFields { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<System.String> | The list of vCard fields to make the query on using user input. |
Methods
Clone()
Instantiates a new Linphone.CardDavParams with values from source.
Declaration
public CardDavParams Clone()
Returns
Type | Description |
---|---|
CardDavParams | The newly created Linphone.CardDavParams object. |