File: IWpfBlazorWebViewBuilder.cs | Web Access |
Project: src\src\BlazorWebView\src\Wpf\Microsoft.AspNetCore.Components.WebView.Wpf.csproj (Microsoft.AspNetCore.Components.WebView.Wpf) |
// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. using Microsoft.Extensions.DependencyInjection; namespace Microsoft.AspNetCore.Components.WebView.Wpf { /// <summary> /// A builder for WPF Blazor WebViews. /// </summary> public interface IWpfBlazorWebViewBuilder { /// <summary> /// Gets the builder service collection. /// </summary> IServiceCollection Services { get; } } } |