다음을 통해 공유


Task.FromException 메서드

정의

오버로드

Name Description
FromException(Exception)

지정된 예외를 Task 사용하여 완료된 것을 만듭니다.

FromException<TResult>(Exception)

지정된 예외를 사용하여 Task<TResult> 완료된 것을 만듭니다.

FromException(Exception)

Source:
Task.cs
Source:
Task.cs
Source:
Task.cs
Source:
Task.cs
Source:
Task.cs

지정된 예외를 Task 사용하여 완료된 것을 만듭니다.

public:
 static System::Threading::Tasks::Task ^ FromException(Exception ^ exception);
public static System.Threading.Tasks.Task FromException(Exception exception);
static member FromException : Exception -> System.Threading.Tasks.Task
Public Shared Function FromException (exception As Exception) As Task

매개 변수

exception
Exception

작업을 완료할 예외입니다.

반환

오류가 발생한 작업입니다.

설명

이 메서드는 Faulted 속성이 있고 해당 Status 속성이 Exception 포함된 개체를 만듭니다 Taskexception. 이 메서드는 태스크가 수행하는 작업이 더 긴 코드 경로를 실행하기 전에 예외를 throw한다는 것을 즉시 알 때 일반적으로 사용됩니다. 예를 들어 오버로드를 참조하세요 FromException<TResult>(Exception) .

적용 대상

FromException<TResult>(Exception)

Source:
Task.cs
Source:
Task.cs
Source:
Task.cs
Source:
Task.cs
Source:
Task.cs

지정된 예외를 사용하여 Task<TResult> 완료된 것을 만듭니다.

public:
generic <typename TResult>
 static System::Threading::Tasks::Task<TResult> ^ FromException(Exception ^ exception);
public static System.Threading.Tasks.Task<TResult> FromException<TResult>(Exception exception);
static member FromException : Exception -> System.Threading.Tasks.Task<'Result>
Public Shared Function FromException(Of TResult) (exception As Exception) As Task(Of TResult)

형식 매개 변수

TResult

태스크에서 반환된 결과의 형식입니다.

매개 변수

exception
Exception

작업을 완료할 예외입니다.

반환

오류가 발생한 작업입니다.

예제

다음 예제는 이름이 명령줄 인수로 전달되는 각 디렉터리의 파일에서 바이트 수를 계산하는 명령줄 유틸리티입니다. 개체를 인스턴스화 FileInfo 하고 디렉터리의 각 파일에 대한 속성 값을 FileInfo.Length 검색하는 더 긴 코드 경로를 실행하는 대신 특정 하위 디렉터리가 없는 경우 메서드를 호출 FromException<TResult>(Exception) 하여 오류가 발생한 작업을 만듭니다.

using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using System.Threading.Tasks;

public class Example
{
   public static void Main()
   {
      string[] args = Environment.GetCommandLineArgs();
      if (args.Length > 1) {
         List<Task<long>> tasks = new List<Task<long>>();
         for (int ctr = 1; ctr < args.Length; ctr++)
            tasks.Add(GetFileLengthsAsync(args[ctr]));

         try {
            Task.WaitAll(tasks.ToArray());
         }
         // Ignore exceptions here.
         catch (AggregateException) {}

         for (int ctr = 0 ; ctr < tasks.Count; ctr++) {
            if (tasks[ctr].Status == TaskStatus.Faulted)
               Console.WriteLine("{0} does not exist", args[ctr + 1]);
            else
               Console.WriteLine("{0:N0} bytes in files in '{1}'",
                                 tasks[ctr].Result, args[ctr + 1]);
         }
      }
      else {
         Console.WriteLine("Syntax error: Include one or more file paths.");
      }
   }

   private static Task<long> GetFileLengthsAsync(string filePath)
   {
      if (!Directory.Exists(filePath)) {
         return Task.FromException<long>(
                     new DirectoryNotFoundException("Invalid directory name."));
      }
      else {
         string[] files = Directory.GetFiles(filePath);
         if (files.Length == 0)
            return Task.FromResult(0L);
         else
            return Task.Run( () => { long total = 0;
                                     Parallel.ForEach(files, (fileName) => {
                                                 var fs = new FileStream(fileName, FileMode.Open,
                                                                         FileAccess.Read, FileShare.ReadWrite,
                                                                         256, true);
                                                 long length = fs.Length;
                                                 Interlocked.Add(ref total, length);
                                                 fs.Close(); } );
                                     return total;
                                   } );
      }
   }
}
// When launched with the following command line arguments:
//      subdir . newsubdir
// the example displays output like the following:
//       0 bytes in files in 'subdir'
//       2,059 bytes in files in '.'
//       newsubdir does not exist
open System
open System.IO
open System.Threading
open System.Threading.Tasks

let getFileLengthsAsync filePath =
    if Directory.Exists filePath |> not then
        DirectoryNotFoundException "Invalid directory name."
        |> Task.FromException<int64>

    else
        let files = Directory.GetFiles filePath

        if files.Length = 0 then
            Task.FromResult 0L
        else
            Task.Run(fun () ->
                let mutable total = 0L

                Parallel.ForEach(
                    files,
                    fun fileName ->
                        use fs =
                            new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, 256, true)

                        Interlocked.Add(ref total, fs.Length) |> ignore
                )
                |> ignore

                total)

let args = Environment.GetCommandLineArgs()[1..]

if args.Length > 0 then
    let tasks = Array.map getFileLengthsAsync args

    try
        Seq.cast tasks |> Seq.toArray |> Task.WaitAll

    // Ignore exceptions here.
    with :? AggregateException ->
        ()

    for i = 0 to tasks.Length - 1 do
        if tasks[i].Status = TaskStatus.Faulted then
            printfn $"{args[i + 1]} does not exist"
        else
            printfn $"{tasks[i].Result:N0} bytes in files in '{args[i + 1]}'"
else
    printfn "Syntax error: Include one or more file paths."

// When launched with the following command line arguments:
//      subdir . newsubdir
// the example displays output like the following:
//       0 bytes in files in 'subdir'
//       2,059 bytes in files in '.'
//       newsubdir does not exist
Imports System.Collections.Generic
Imports System.IO
Imports System.Threading
Imports System.Threading.Tasks

Module Example
   Public Sub Main()
      Dim args() As String = Environment.GetCommandLineArgs()
      If args.Length > 1 Then
         Dim tasks As New List(Of Task(Of Long))
         For ctr = 1 To args.Length - 1
            tasks.Add(GetFileLengthsAsync(args(ctr)))
         Next
         Try
            Task.WaitAll(tasks.ToArray())
         ' Ignore exceptions here.
         Catch e As AggregateException
         End Try

         For ctr As Integer = 0 To tasks.Count - 1
            If tasks(ctr).Status = TaskStatus.Faulted Then
               Console.WriteLine("{0} does not exist", args(ctr + 1))
            Else
               Console.WriteLine("{0:N0} bytes in files in '{1}'",
                                 tasks(ctr).Result, args(ctr + 1))
            End If
         Next
      Else
         Console.WriteLine("Syntax error: Include one or more file paths.")
      End If
   End Sub
   
   Private Function GetFileLengthsAsync(filePath As String) As Task(Of Long)
      If Not Directory.Exists(filePath) Then
         Return Task.FromException(Of Long)(
                     New DirectoryNotFoundException("Invalid directory name."))
      Else
         Dim files As String() = Directory.GetFiles(filePath)
         If files.Length = 0 Then
            Return Task.FromResult(0L)
         Else
            Return Task.Run( Function()
                                Dim total As Long = 0
                                Dim lockObj As New Object
                                Parallel.ForEach(files, Sub(fileName)
                                                           Dim fs As New FileStream(fileName, FileMode.Open,
                                                                     FileAccess.Read, FileShare.ReadWrite,
                                                                     256, True)
                                                           Dim length As Long = fs.Length
                                                           Interlocked.Add(total, length)
                                                           fs.Close()
                                                        End Sub)
                                Return total
                             End Function )
         End If
      End If
   End Function
End Module
' When launched with the following command line arguments:
'      subdir . newsubdir
' the example displays output like the following:
'       0 bytes in files in 'subdir'
'       2,059 bytes in files in '.'
'       newsubdir does not exist

설명

이 메서드는 Faulted 속성이 있고 해당 Status 속성이 Exception 포함된 개체를 만듭니다 Task<TResult>exception. 이 메서드는 태스크가 수행하는 작업이 더 긴 코드 경로를 실행하기 전에 예외를 throw한다는 것을 즉시 알 때 일반적으로 사용됩니다. 이 예제에서는 그림을 제공합니다.

적용 대상