/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Workspaces/Remote/ServiceHub/Services/BrokeredServiceBase.ServiceConstructionArguments.cs
23 строки
759 B
Cyrus Najmabadi
File scoped namespaces
22 авг 2024, 19:53
22 авг 2024, 19:53
36435da
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using Microsoft.ServiceHub.Framework; namespace Microsoft.CodeAnalysis.Remote; internal abstract partial class BrokeredServiceBase { internal readonly struct ServiceConstructionArguments { public readonly IServiceProvider ServiceProvider; public readonly IServiceBroker ServiceBroker; public ServiceConstructionArguments(IServiceProvider serviceProvider, IServiceBroker serviceBroker) { ServiceProvider = serviceProvider; ServiceBroker = serviceBroker; } } }