三国卡牌客户端基础资源仓库
yyl
2025-06-16 a0c0dbcda79206c552f6bb7deb80589d97d9ae70
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*---------------------------------------------------------------------------------------------
 *  Copyright (c) Microsoft Corporation. All rights reserved.
 *  Licensed under the MIT License. See License.txt in the project root for license information.
 *--------------------------------------------------------------------------------------------*/
using System.Globalization;
using System.Net;
 
namespace Microsoft.Unity.VisualStudio.Editor.Messaging
{
    internal class Message
    {
        public MessageType Type { get; set; }
 
        public string Value { get; set; }
 
        public IPEndPoint Origin { get; set; }
 
        public override string ToString()
        {
            return string.Format(CultureInfo.InvariantCulture, "<Message type:{0} value:{1}>", Type, Value);
        }
    }
}