ux.Master.PushHandle C# (CSharp) Method

PushHandle() public method

単一のハンドルをキューにプッシュします。
public PushHandle ( Handle handle ) : void
handle ux.Component.Handle プッシュされるハンドル。
return void
        public void PushHandle(Handle handle)
        {
            lock (((ICollection)this.handleQueue).SyncRoot)
                this.handleQueue.Enqueue(handle);
        }

Same methods

Master::PushHandle ( IEnumerable handles ) : void
Master::PushHandle ( IEnumerable handles, int targetPart ) : void