File: Debugger\Engine\DkmGetChildrenAsyncResult.cs
Web Access
Project: src\src\ExpressionEvaluator\Core\Test\ResultProvider\Microsoft.CodeAnalysis.ResultProvider.Utilities.csproj (Microsoft.CodeAnalysis.ExpressionEvaluator.ResultProvider.Utilities)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
#nullable disable
 
#region Assembly Microsoft.VisualStudio.Debugger.Engine, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
// References\Debugger\v2.0\Microsoft.VisualStudio.Debugger.Engine.dll
 
#endregion
 
using System;
 
namespace Microsoft.VisualStudio.Debugger.Evaluation
{
    public struct DkmGetChildrenAsyncResult
    {
        public DkmGetChildrenAsyncResult(DkmEvaluationResult[] InitialChildren, DkmEvaluationResultEnumContext EnumContext)
            : this()
        {
            if (InitialChildren == null)
            {
                throw new ArgumentNullException();
            }
            this.InitialChildren = InitialChildren;
            this.EnumContext = EnumContext;
        }
 
        public DkmEvaluationResultEnumContext EnumContext { get; }
        public DkmEvaluationResult[] InitialChildren { get; }
 
        internal Exception Exception { get; set; }
 
        public static DkmGetChildrenAsyncResult CreateErrorResult(Exception exception)
        {
            return new DkmGetChildrenAsyncResult(new DkmEvaluationResult[0], EnumContext: null) { Exception = exception };
        }
    }
}