BudgetAnalyser.Statement.LoadFileController.RequestUserInputForOpenFile C# (CSharp) Метод

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

public RequestUserInputForOpenFile ( ) : System.Threading.Tasks.Task
Результат System.Threading.Tasks.Task
        public Task RequestUserInputForOpenFile()
        {
            if (this.disposed)
            {
                throw new ObjectDisposedException("LoadFileController.RequestUserInputForOpenFile");
            }

            MergeMode = false;
            ActionButtonToolTip = "Open the selected file. Any statement file already open will be closed first.";
            SuggestedDateRange = null;
            Title = "Open Statement";
            return RequestUserInputCommomPreparation();
        }