2016-08-03 10:59:49 +00:00
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//------------------------------------------------------------------------------
|
|
|
|
namespace System.ServiceModel.Activation.Configuration
|
|
|
|
{
|
|
|
|
using System;
|
|
|
|
using System.Configuration;
|
|
|
|
|
|
|
|
public sealed class ServiceModelActivationSectionGroup : ConfigurationSectionGroup
|
|
|
|
{
|
|
|
|
public DiagnosticSection Diagnostics
|
|
|
|
{
|
|
|
|
get { return (DiagnosticSection)this.Sections[ConfigurationStrings.DiagnosticSectionName]; }
|
|
|
|
}
|
|
|
|
|
|
|
|
static public ServiceModelActivationSectionGroup GetSectionGroup(Configuration config)
|
|
|
|
{
|
|
|
|
if (config == null)
|
|
|
|
{
|
|
|
|
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("config");
|
|
|
|
}
|
2017-08-21 15:34:15 +00:00
|
|
|
#pragma warning suppress 56506 // Microsoft, Configuration.SectionGroups cannot be null
|
2016-08-03 10:59:49 +00:00
|
|
|
return (ServiceModelActivationSectionGroup)config.SectionGroups[ConfigurationStrings.SectionGroupName];
|
|
|
|
}
|
|
|
|
|
|
|
|
public NetPipeSection NetPipe
|
|
|
|
{
|
|
|
|
get { return (NetPipeSection)this.Sections[ConfigurationStrings.NetPipeSectionName]; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public NetTcpSection NetTcp
|
|
|
|
{
|
|
|
|
get { return (NetTcpSection)this.Sections[ConfigurationStrings.NetTcpSectionName]; }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|