ivcard.cs

来自「老外Logix Mobile mCoreLib短信控件源码 通过串口或者手机数」· CS 代码 · 共 60 行

CS
60
字号
namespace mCore
{
    using System;

    public interface IvCard
    {
        string Send();
        string SendFile(string vCardFile);
        string SendFileToQueue(string vCardFile);
        string SendFileToQueue(string vCardFile, QueuePriority Priority);
        string SendToQueue();
        string SendToQueue(QueuePriority Priority);

        string BusinessAddressCity { get; set; }

        string BusinessAddressCountry { get; set; }

        string BusinessAddressState { get; set; }

        string BusinessAddressStreet { get; set; }

        string BusinessAddressZIP { get; set; }

        string BusinessPhone { get; set; }

        string Comment { get; set; }

        string Company { get; set; }

        string Destination { get; set; }

        string Email { get; set; }

        string FirstName { get; set; }

        string HomeAddressCity { get; set; }

        string HomeAddressCountry { get; set; }

        string HomeAddressState { get; set; }

        string HomeAddressStreet { get; set; }

        string HomeAddressZIP { get; set; }

        string HomePhone { get; set; }

        string JobTitle { get; set; }

        string LastName { get; set; }

        string MiddleName { get; set; }

        string MobilePhone { get; set; }

        string URL { get; set; }
    }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?