Kimono.KRun.SetAutoDelete C# (CSharp) Метод

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

Enables or disabled auto deletion. Auto deletion causes the KRun instance to delete itself when it finished its task. If you allocate the KRun object on the stack you must disable auto deletion. By default auto deletion is on. name="b" true to enable auto deletion, false to disable
public SetAutoDelete ( bool b ) : void
b bool
Результат void
        public void SetAutoDelete(bool b)
        {
            interceptor.Invoke("setAutoDelete$", "setAutoDelete(bool)", typeof(void), typeof(bool), b);
        }