terminal/src/cascadia/Microsoft.UI.Xaml.Markup/XamlApplication.idl
Dustin Howett d4d59fa339 Initial release of the Windows Terminal source code
This commit introduces all of the Windows Terminal and Console Host source,
under the MIT license.
2019-05-02 15:29:04 -07:00

18 lines
597 B
Plaintext

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
namespace Microsoft.UI.Xaml.Markup
{
interface IXamlMetadataProviderContainer
{
Windows.Foundation.Collections.IVector<Windows.UI.Xaml.Markup.IXamlMetadataProvider> Providers { get; };
};
[default_interface]
unsealed runtimeclass XamlApplication : Windows.UI.Xaml.Application, IXamlMetadataProviderContainer, Windows.Foundation.IClosable
{
XamlApplication();
protected XamlApplication(Windows.UI.Xaml.Markup.IXamlMetadataProvider parentProvider);
}
}