Jo Shields 3c1f479b9d Imported Upstream version 4.0.0~alpha1
Former-commit-id: 806294f5ded97629b74c85c09952f2a74fe182d9
2015-04-07 09:35:12 +01:00

33 lines
1.3 KiB
C#

//------------------------------------------------------------------------------
// <copyright file="HtmlFormParameterReader.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
namespace System.Web.Services.Protocols {
using System.IO;
using System;
using System.Xml.Serialization;
using System.Reflection;
using System.Collections;
using System.Web.Services;
/// <include file='doc\HtmlFormParameterReader.uex' path='docs/doc[@for="HtmlFormParameterReader"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public class HtmlFormParameterReader : ValueCollectionParameterReader {
internal const string MimeType = "application/x-www-form-urlencoded";
/// <include file='doc\HtmlFormParameterReader.uex' path='docs/doc[@for="HtmlFormParameterReader.Read"]/*' />
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public override object[] Read(HttpRequest request) {
if (!ContentType.MatchesBase(request.ContentType, MimeType)) return null;
return Read(request.Form);
}
}
}