FromVCard

FromVCard(string)

读取MapiContact从指定的 vCard 文件 支持的 vCard 版本为 2.1 和 3.0

public static MapiContact FromVCard(string filePath)
范围类型描述
filePathString要读取的文件名

返回值

一读MapiContact

例外

例外(健康)状况
ArgumentExceptionfilePath无效的或者空的

也可以看看


FromVCard(string, Encoding)

读取MapiContact从指定的 vCard 文件 支持的 vCard 版本为 2.1 和 3.0

public static MapiContact FromVCard(string filePath, Encoding encoding)
范围类型描述
filePathString要读取的文件名
encodingEncoding文件数据编码

返回值

一读MapiContact

例外

例外(健康)状况
ArgumentExceptionfilePath无效的或者空的

也可以看看


FromVCard(Stream)

读取MapiContact来自包含 vCard 的指定流。 支持的 vCard 版本为 2.1 和 3.0

public static MapiContact FromVCard(Stream stream)
范围类型描述
streamStream要读取的流

返回值

一读MapiContact

例外

例外(健康)状况
ArgumentNullExceptionstream无效的
NotSupportedExceptionstream不支持阅读

也可以看看


FromVCard(Stream, Encoding)

读取MapiContact来自包含 vCard 的指定流。 支持的 vCard 版本为 2.1 和 3.0

public static MapiContact FromVCard(Stream stream, Encoding encoding)
范围类型描述
streamStream要读取的流
encodingEncoding流数据编码

返回值

一读MapiContact

例外

例外(健康)状况
ArgumentNullExceptionstream无效的
NotSupportedExceptionstream不支持阅读

也可以看看