5 references to HtmlFormParameterReader
System.Web.Services (5)
System\Web\Services\Configuration\WebServicesSection.cs (1)
512Type[] parameterReaderTypes = new Type[] { typeof(UrlParameterReader), typeof(HtmlFormParameterReader) };
System\Web\Services\Description\MimeFormImporter.cs (1)
15if (string.Compare(mimeContentBinding.Type, HtmlFormParameterReader.MimeType, StringComparison.OrdinalIgnoreCase) != 0) return null;
System\Web\Services\Description\MimeFormReflector.cs (2)
19if (!HtmlFormParameterReader.IsSupported(ReflectionContext.Method)) 23mimeContentBinding.Type = HtmlFormParameterReader.MimeType;
System\Web\Services\Protocols\HtmlFormParameterWriter.cs (1)
33request.ContentType = ContentType.Compose(HtmlFormParameterReader.MimeType, RequestEncoding);