VCardContact.LoadAsMultiple

LoadAsMultiple(string, Encoding, CancellationToken)

Loads list of contacts from multi contact stream.

public static List<VCardContact> LoadAsMultiple(string filePath, Encoding encoding, 
    CancellationToken token)
ParameterTypeDescription
filePathStringA file name to read from
encodingEncodingStream data encoding,if null then UTF8 will be used.
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

List of contacs

See Also


LoadAsMultiple(Stream, Encoding, CancellationToken)

Loads list of contacts from multi contact stream.

public static List<VCardContact> LoadAsMultiple(Stream stream, Encoding encoding, 
    CancellationToken token)
ParameterTypeDescription
streamStreamSource stream
encodingEncodingStream data encoding,if null then UTF8 will be used.
tokenCancellationTokenPropagates notification that operations should be canceled.

Return Value

List of contacs

See Also


LoadAsMultiple(Stream)

Loads list of contacts from multi contact stream.

public static List<VCardContact> LoadAsMultiple(Stream stream)
ParameterTypeDescription
streamStreamSource stream

Return Value

List of contacs

See Also


LoadAsMultiple(Stream, Encoding)

Loads list of contacts from multi contact stream.

public static List<VCardContact> LoadAsMultiple(Stream stream, Encoding encoding)
ParameterTypeDescription
streamStreamSource stream
encodingEncodingStream data encoding,if null then UTF8 will be used.

Return Value

List of contacs

See Also


LoadAsMultiple(string)

Loads list of contacts from multi contact file.

public static List<VCardContact> LoadAsMultiple(string filePath)
ParameterTypeDescription
filePathStringSource file

See Also


LoadAsMultiple(string, Encoding)

Loads list of contacts from multi contact file.

public static List<VCardContact> LoadAsMultiple(string filePath, Encoding encoding)
ParameterTypeDescription
filePathStringSource file
encodingEncodingFile data encoding,if null then UTF8 will be used.

See Also