a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
25 lines
564 B
C#
25 lines
564 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.ServiceModel;
|
|
|
|
namespace MonoTests.Features.Contracts
|
|
{
|
|
[ServiceContract (Namespace = "http://MonoTests.Features.Contracts")]
|
|
public interface IAsyncCallTesterContract
|
|
{
|
|
[OperationContract]
|
|
string Query (string query);
|
|
}
|
|
|
|
[ServiceBehavior (InstanceContextMode = InstanceContextMode.PerCall, ConcurrencyMode = ConcurrencyMode.Multiple)]
|
|
public class AsyncCallTester : IAsyncCallTesterContract
|
|
{
|
|
public string Query (string query)
|
|
{
|
|
return query + query;
|
|
}
|
|
}
|
|
|
|
}
|