queuewappushsenteventargs.cs
来自「老外Logix Mobile mCoreLib短信控件源码 通过串口或者手机数」· CS 代码 · 共 122 行
CS
122 行
namespace mCore
{
using System;
public class QueueWapPushSentEventArgs : EventArgs, IQueueWapPushSentEventArgs
{
private string a = "";
private bool b = false;
private string c = "";
private long d;
private string e = "";
private string f = "";
internal QueueWapPushSentEventArgs(string A_0, string A_1, bool A_2, string A_3, long A_4, string A_5)
{
this.a = A_0;
this.f = A_1;
this.b = A_2;
this.c = A_3;
this.d = A_4;
this.e = A_5;
}
public string DestinationNumber
{
get
{
return this.f;
}
}
public long ErrorCode
{
get
{
return this.d;
}
}
public string ErrorDescription
{
get
{
return this.e;
}
}
public string mCore.IQueueWapPushSentEventArgs.DestinationNumber
{
get
{
return this.f;
}
}
public long mCore.IQueueWapPushSentEventArgs.ErrorCode
{
get
{
return this.d;
}
}
public string mCore.IQueueWapPushSentEventArgs.ErrorDescription
{
get
{
return this.e;
}
}
public string mCore.IQueueWapPushSentEventArgs.MessageReference
{
get
{
return this.c;
}
}
public string mCore.IQueueWapPushSentEventArgs.QueueMessageKey
{
get
{
return this.a;
}
}
public bool mCore.IQueueWapPushSentEventArgs.SendResult
{
get
{
return this.b;
}
}
public string MessageReference
{
get
{
return this.c;
}
}
public string QueueMessageKey
{
get
{
return this.a;
}
}
public bool SendResult
{
get
{
return this.b;
}
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?