2016-08-03 10:59:49 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
namespace System.Runtime.Serialization.Configuration
|
|
|
|
{
|
|
|
|
using System.Configuration;
|
|
|
|
|
|
|
|
public sealed class SerializationSectionGroup : ConfigurationSectionGroup
|
|
|
|
{
|
|
|
|
static public SerializationSectionGroup GetSectionGroup(Configuration config)
|
|
|
|
{
|
|
|
|
if (config == null)
|
|
|
|
{
|
|
|
|
throw System.Runtime.Serialization.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("config");
|
|
|
|
}
|
2017-08-21 15:34:15 +00:00
|
|
|
#pragma warning suppress 56506 // Microsoft, config is checked above
|
2016-08-03 10:59:49 +00:00
|
|
|
return (SerializationSectionGroup)config.SectionGroups[ConfigurationStrings.SectionGroupName];
|
|
|
|
}
|
|
|
|
|
|
|
|
public DataContractSerializerSection DataContractSerializer
|
|
|
|
{
|
|
|
|
get { return (DataContractSerializerSection)this.Sections[ConfigurationStrings.DataContractSerializerSectionName]; }
|
|
|
|
}
|
|
|
|
|
|
|
|
public NetDataContractSerializerSection NetDataContractSerializer
|
|
|
|
{
|
|
|
|
get { return (NetDataContractSerializerSection)this.Sections[ConfigurationStrings.NetDataContractSerializerSectionName]; }
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|