Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TypeDesc.RuntimeDetermined.cs « RuntimeDetermined « TypeSystem « Common « tools « coreclr « src - github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc602f5ed282a69fe369ba1645883519b7e67ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.

namespace Internal.TypeSystem
{
    partial class TypeDesc
    {
        /// <summary>
        /// Gets a value indicating whether the concrete type this object represents is unknown
        /// at compile time. For a constructed type, returns true if any of the constituents are
        /// unknown at compile time. Use <see cref="IsRuntimeDeterminedType"/> to check if
        /// this is a runtime determined type without checking constituents.
        /// </summary>
        public abstract bool IsRuntimeDeterminedSubtype
        {
            get;
        }

        /// <summary>
        /// Gets a value indicating whether this is a runtime determined type. This will not
        /// check the composition of constructed types for runtime determined types. Use
        /// <see cref="IsRuntimeDeterminedSubtype"/> to do that.
        /// </summary>
        public bool IsRuntimeDeterminedType
        {
            get
            {
                return this.GetType() == typeof(RuntimeDeterminedType);
            }
        }

        public abstract TypeDesc GetNonRuntimeDeterminedTypeFromRuntimeDeterminedSubtypeViaSubstitution(Instantiation typeInstantiation, Instantiation methodInstantiation);
    }
}