mirror of
https://gitee.com/fudiwei/DotNetCore.SKIT.FlurlHttpClient.Wechat.git
synced 2026-03-10 00:13:36 +08:00
feat(wxapi): 升级公共组件
This commit is contained in:
@@ -4,7 +4,7 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Events
|
||||
/// <para>表示 EVENT.subscribe_msg_sent_event 事件的数据。</para>
|
||||
/// <para>REF: https://developers.weixin.qq.com/doc/offiaccount/Subscription_Messages/api.html#%E4%BA%8B%E4%BB%B6%E6%8E%A8%E9%80%81 </para>
|
||||
/// </summary>
|
||||
public class SubscribeMessageSentEvent : WechatApiEvent, WechatApiEvent.Serialization.IJsonSerializable, WechatApiEvent.Serialization.IXmlSerializable
|
||||
public class SubscribeMessageSentEvent : WechatApiEvent
|
||||
{
|
||||
public static class Types
|
||||
{
|
||||
@@ -80,11 +80,11 @@ namespace SKIT.FlurlHttpClient.Wechat.Api.Events
|
||||
get { return this.EventData?.EventList; }
|
||||
set
|
||||
{
|
||||
if (this.EventData == null)
|
||||
if (this.EventData is null)
|
||||
{
|
||||
lock (_lockObj)
|
||||
{
|
||||
if (this.EventData == null)
|
||||
if (this.EventData is null)
|
||||
{
|
||||
this.EventData = new Types.EventData();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user