//------------------------------------------------------------------------------
//
// Copyright (c) Microsoft Corporation. All rights reserved.
//
//------------------------------------------------------------------------------
namespace System.Web.Services.Protocols {
using System.IO;
using System;
using System.Xml.Serialization;
using System.Reflection;
using System.Collections;
using System.Web.Services;
///
///
/// [To be supplied.]
///
public class HtmlFormParameterReader : ValueCollectionParameterReader {
internal const string MimeType = "application/x-www-form-urlencoded";
///
///
/// [To be supplied.]
///
public override object[] Read(HttpRequest request) {
if (!ContentType.MatchesBase(request.ContentType, MimeType)) return null;
return Read(request.Form);
}
}
}