You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,53 @@
|
||||
//------------------------------------------------------------------------------
|
||||
// <copyright file="ProtocolsConfigurationHandler.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//------------------------------------------------------------------------------
|
||||
|
||||
namespace System.Web.Configuration {
|
||||
|
||||
using System.IO;
|
||||
using System.Runtime.Serialization.Formatters;
|
||||
using System.Threading;
|
||||
using System.Runtime.InteropServices;
|
||||
using System.ComponentModel;
|
||||
using System.Collections;
|
||||
using System.Configuration;
|
||||
using System.Reflection;
|
||||
using System.Security;
|
||||
using System.Security.Permissions;
|
||||
using System.Globalization;
|
||||
using System.Web.Hosting;
|
||||
using System.Web.Security;
|
||||
using System.Web.Util;
|
||||
using System.Xml;
|
||||
|
||||
//
|
||||
// Protocols config (machine.config only):
|
||||
//
|
||||
/*
|
||||
<protocols>
|
||||
<add
|
||||
id="<protocolID>"
|
||||
processHandlerType="<typeName>"
|
||||
appDomainHandlerType="<typeName>"
|
||||
[validate="false"]
|
||||
/>
|
||||
...
|
||||
</protocols>
|
||||
*/
|
||||
//
|
||||
public sealed class ProtocolsConfigurationHandler : IConfigurationSectionHandler {
|
||||
|
||||
public ProtocolsConfigurationHandler() {
|
||||
}
|
||||
|
||||
public object Create(Object parent, Object configContextObj, XmlNode section) {
|
||||
// can be called from client config ( default app domain)
|
||||
Debug.Assert(parent == null, "<protocols> config is only allowed in machine.config");
|
||||
return new ProtocolsConfiguration(section);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user