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

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

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