e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
26 lines
1.1 KiB
C#
26 lines
1.1 KiB
C#
//----------------------------------------------------------------------------
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
//----------------------------------------------------------------------------
|
|
namespace System.ServiceModel.ComIntegration
|
|
{
|
|
using System.ServiceModel.Activation;
|
|
|
|
public sealed class WasHostedComPlusFactory : ServiceHostFactoryBase
|
|
{
|
|
public override ServiceHostBase CreateServiceHost(string constructorString, Uri[] baseAddresses)
|
|
{
|
|
if (!AspNetEnvironment.Enabled)
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.Hosting_ProcessNotExecutingUnderHostedContext, "WasHostedComPlusFactory.CreateServiceHost")));
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(constructorString))
|
|
{
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.Hosting_ServiceTypeNotProvided)));
|
|
}
|
|
|
|
return new WebHostedComPlusServiceHost(constructorString, baseAddresses);
|
|
}
|
|
}
|
|
}
|