File: IXamlTypeResolver.cs | Web Access |
Project: src\src\Controls\src\Core\Controls.Core.csproj (Microsoft.Maui.Controls) |
#nullable disable using System; namespace Microsoft.Maui.Controls.Xaml { public interface IXamlTypeResolver { Type Resolve(string qualifiedTypeName, IServiceProvider serviceProvider = null); bool TryResolve(string qualifiedTypeName, out Type type); } } |