CSPspEmu.Core.Threading.Synchronization.PspResetEvent.PspResetEvent C# (CSharp) Method

PspResetEvent() protected method

protected PspResetEvent ( bool InitialValue, bool AutoReset ) : System
InitialValue bool
AutoReset bool
return System
        protected PspResetEvent(bool InitialValue, bool AutoReset)
        {
            this.Value = InitialValue;
            this.AutoReset = AutoReset;
        }