// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
#nullable disable
 
namespace MS.Internal.Xaml.Context
{
    // This interface allows ObjectWriterContext to call into ObjectWriter to get the live initialization
    // status of an object. We direct calls through this interface to avoid breaking our internal layering
    // by having a direct reference from ObjectWriterContext to ObjectWriter.
    internal interface ICheckIfInitialized
    {
        bool IsFullyInitialized(object obj);
    }
}
 |