File: ServiceContract\EchoService.cs | Web Access |
Project: src\src\System.Private.ServiceModel\tests\Scenarios\Binding\UDS\Binding.UDS.IntegrationTests.csproj (Binding.UDS.IntegrationTests) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using CoreWCF; namespace Binding.UDS.IntegrationTests.ServiceContract { [ServiceBehavior(ConcurrencyMode = ConcurrencyMode.Multiple, InstanceContextMode = InstanceContextMode.Single)] public class EchoService : IEchoService { public string Echo(string echo) { return echo; } } } |