GoogleCloudExtension.UserPrompt.UserPromptWindow.PromptUser C# (CSharp) Метод

PromptUser() публичный статический Метод

Show the prompt to the user with the given options.
public static PromptUser ( Options options ) : bool
options Options
Результат bool
        public static bool PromptUser(Options options)
        {
            var dialog = new UserPromptWindow(options);
            dialog.ShowModal();
            return dialog.ViewModel.Result;
        }
    }