You've already forked linux-packaging-mono
Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
This commit is contained in:
53
external/referencesource/System.Web/Configuration/ProtocolsConfigurationHandler.cs
vendored
Normal file
53
external/referencesource/System.Web/Configuration/ProtocolsConfigurationHandler.cs
vendored
Normal file
@ -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