summaryrefslogtreecommitdiff
path: root/Client/Assets/Scripts/XMainClient/ProtoBuf/Meta/LockContentedEventArgs.cs
blob: f787bb962672773c0e642e3d62cca22ddc77b2d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
using System;

namespace ProtoBuf.Meta
{
	public sealed class LockContentedEventArgs : EventArgs
	{
		public string OwnerStackTrace
		{
			get
			{
				return this.ownerStackTrace;
			}
		}

		private readonly string ownerStackTrace;

		internal LockContentedEventArgs(string ownerStackTrace)
		{
			this.ownerStackTrace = ownerStackTrace;
		}
	}
}