2024-10-28 00:31:41 +08:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
|
using System;
|
2024-10-20 12:10:57 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
2024-10-22 00:13:13 +08:00
|
|
|
|
using System.Threading;
|
2024-10-20 12:10:57 +08:00
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Serein.Library.Network.WebSocketCommunication.Handle
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
2024-12-26 16:42:05 +08:00
|
|
|
|
/// 表示参数不能为空(Net462不能使用NutNull的情况)
|
2024-10-20 12:10:57 +08:00
|
|
|
|
/// </summary>
|
|
|
|
|
|
public sealed class NeedfulAttribute : Attribute
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
2024-10-22 00:13:13 +08:00
|
|
|
|
|
2024-10-28 00:31:41 +08:00
|
|
|
|
|
|
|
|
|
|
|
2024-10-20 12:10:57 +08:00
|
|
|
|
}
|