public VCardBuilder AddText(
string? text,
string? mediaType = null,
Action<ParameterSection>? parameters = null,
Func<VCard, string?>? group = null
)
Public Function AddText (
text As String,
Optional mediaType As String = Nothing,
Optional parameters As Action(Of ParameterSection) = Nothing,
Optional group As Func(Of VCard, String) = Nothing
) As VCardBuilder
public:
VCardBuilder^ AddText(
String^ text,
String^ mediaType = nullptr,
Action<ParameterSection^>^ parameters = nullptr,
Func<VCard^, String^>^ group = nullptr
)
member AddText :
text : string *
?mediaType : string *
?parameters : Action<ParameterSection> *
?group : Func<VCard, string>
(* Defaults:
let _mediaType = defaultArg mediaType null
let _parameters = defaultArg parameters null
let _group = defaultArg group null
*)
-> VCardBuilder
The vCard standard only allows to write a password as plain text to the KEY property. (See VCard.Keys.)
InvalidOperationException | The method has been called on an instance that had been initialized using the default constructor. |