16 lines
300 B
C#
16 lines
300 B
C#
using System;
|
|
|
|
namespace ProtoBuf.Meta;
|
|
|
|
public sealed class LockContentedEventArgs : EventArgs
|
|
{
|
|
private readonly string ownerStackTrace;
|
|
|
|
public string OwnerStackTrace => ownerStackTrace;
|
|
|
|
internal LockContentedEventArgs(string ownerStackTrace)
|
|
{
|
|
this.ownerStackTrace = ownerStackTrace;
|
|
}
|
|
}
|