GoogleCloudExtension.FirewallManagement.PortManagerWindow.PromptUser C# (CSharp) Метод

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

Shows the dialog to the user and returns the changes requested.
public static PromptUser ( Instance instance ) : PortChanges
instance Instance The instance on which open/close ports.
Результат PortChanges
        public static PortChanges PromptUser(Instance instance)
        {
            var window = new PortManagerWindow(instance);
            window.ShowModal();
            return window.ViewModel.Result;
        }
    }