50 lines
976 B
C#
50 lines
976 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Tencent.Framework.WXSdk.Implement;
|
|||
|
using Tencent.Framework.WXSdk.IPAD;
|
|||
|
|
|||
|
namespace Tencent.Framework.WXSdk
|
|||
|
{
|
|||
|
|
|||
|
public interface WXClient
|
|||
|
{
|
|||
|
WXUser User { get; set; }
|
|||
|
/// <summary>
|
|||
|
/// 写出日志
|
|||
|
/// </summary>
|
|||
|
void WriteLog(string msg, bool debug = false);
|
|||
|
|
|||
|
//显示登录窗口
|
|||
|
void ShowLogin();
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 添加好友
|
|||
|
/// </summary>
|
|||
|
void AddFirend();
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 获取登录二维码
|
|||
|
/// </summary>
|
|||
|
void FindLoginImage();
|
|||
|
|
|||
|
void FindLoginStatus();
|
|||
|
|
|||
|
WxStatus Status { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 刷新账号
|
|||
|
/// </summary>
|
|||
|
bool RefreshKey();
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 重置登录
|
|||
|
/// </summary>
|
|||
|
bool ResetLogin();
|
|||
|
|
|||
|
|
|||
|
}
|
|||
|
}
|