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;
        }
    }