File: System\Diagnostics\SymbolStore\ISymbolNamespace.cs
Web Access
Project: src\src\libraries\System.Diagnostics.StackTrace\src\System.Diagnostics.StackTrace.csproj (System.Diagnostics.StackTrace)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.Diagnostics.SymbolStore
{
    public interface ISymbolNamespace
    {
        // Get the name of this namespace
        string Name { get; }
 
        // Get the children of this namespace
        ISymbolNamespace[] GetNamespaces();
 
        // Get the variables in this namespace
        ISymbolVariable[] GetVariables();
    }
}