Files
linux-packaging-mono/external/referencesource/System.ServiceModel.Activation/System/ServiceModel/Activation/IServiceModelActivationHandler.cs

14 lines
392 B
C#
Raw Normal View History

//-----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//-----------------------------------------------------------------------------
namespace System.ServiceModel.Activation
{
using System;
interface IServiceModelActivationHandler
{
ServiceHostFactoryBase GetFactory();
}
}