System.Threading.ServerSpinLock.ServerSpinLock C# (CSharp) Метод

ServerSpinLock() публичный Метод

public ServerSpinLock ( bool enableThreadOwnerTracking ) : System
enableThreadOwnerTracking bool
Результат System
        public ServerSpinLock(bool enableThreadOwnerTracking)
        {
            this.isThreadOwnerTrackingEnabled = enableThreadOwnerTracking;
            this.threadWhoTookLock = 0;
            this.ticket = new ServerTicketType ();
            this.stallTickets = null;
        }