ValueCollectionParameterReader Classe

Definição

Serve como classe base para leitores de parâmetros de solicitação de entrada para serviços Web implementados usando HTTP, mas sem o SOAP.Serves as a base class for readers of incoming request parameters for Web services implemented using HTTP but without SOAP.

public ref class ValueCollectionParameterReader abstract : System::Web::Services::Protocols::MimeParameterReader
public abstract class ValueCollectionParameterReader : System.Web.Services.Protocols.MimeParameterReader
type ValueCollectionParameterReader = class
    inherit MimeParameterReader
Public MustInherit Class ValueCollectionParameterReader
Inherits MimeParameterReader
Herança
ValueCollectionParameterReader
Derivado

Comentários

ValueCollectionParameterReader e outras classes no System.Web.Services.Protocols namespace dão suporte às implementações de .NET Framework de serviços da Web por meio das operações HTTP-Get e http-post.ValueCollectionParameterReader and other classes in the System.Web.Services.Protocols namespace support the .NET Framework's implementations of Web services via the HTTP-GET and HTTP-POST operations. Os gravadores e os leitores do serviço Web serializam e desserializam, respectivamente, entre os parâmetros ou os objetos de retorno dos métodos da Web e os fluxos de solicitação ou resposta HTTP.Web service writers and readers serialize and deserialize, respectively, between the parameters or return objects of Web methods and the HTTP request or response streams. Os gravadores e os leitores do serviço Web usam HTTP para transporte, mas não trocam mensagens usando o padrão SOAP.Web service writers and readers use HTTP for transport but don't exchange messages using the SOAP standard. A ValueCollectionParameterReader classe fornece, entre outros métodos, um Read método comum para todos os leitores do lado do serviço de coleções de pares de nome/valor em parâmetros de método da Web.The ValueCollectionParameterReader class provides, among other methods, a common Read method for all service-side readers of collections of name/value pairs into Web method parameters. Os pares de nome/valor foram analisados de uma solicitação HTTP de entrada.The name/value pairs have been parsed from an incoming HTTP request.

Normalmente, você não precisará usar ValueCollectionParameterReader suas classes descendentes diretamente.You typically will not need to use ValueCollectionParameterReader or its descendant classes directly. Os tipos apropriados são usados de acordo com as configurações em um arquivo de configuração ASP.NET (Web.config).The appropriate types are used according to settings in an ASP.NET configuration file (Web.config).

Construtores

ValueCollectionParameterReader()

Inicializa uma nova instância da classe ValueCollectionParameterReader.Initializes a new instance of the ValueCollectionParameterReader class.

Métodos

Equals(Object)

Determina se o objeto especificado é igual ao objeto atual.Determines whether the specified object is equal to the current object.

(Herdado de Object)
GetHashCode()

Serve como a função de hash padrão.Serves as the default hash function.

(Herdado de Object)
GetInitializer(LogicalMethodInfo)

Retorna um inicializador para o método especificado.Returns an initializer for the specified method.

GetInitializers(LogicalMethodInfo[])

Quando substituído em uma classe derivada, retorna uma matriz de objetos inicializadores correspondente a uma matriz de entrada das definições de método.When overridden in a derived class, returns an array of initializer objects corresponding to an input array of method definitions.

(Herdado de MimeFormatter)
GetType()

Obtém o Type da instância atual.Gets the Type of the current instance.

(Herdado de Object)
Initialize(Object)

Inicializa uma instância.Initializes an instance.

IsSupported(LogicalMethodInfo)

Determina se um parâmetro de definição de método tem suporte da classe ValueCollectionParameterReader.Determines whether a method definition's parameter definitions are supported by the ValueCollectionParameterReader class.

IsSupported(ParameterInfo)

Determina se um tipo de parâmetro específico tem suporte da classe ValueCollectionParameterReader.Determines whether a particular parameter type is supported by the ValueCollectionParameterReader class.

MemberwiseClone()

Cria uma cópia superficial do Object atual.Creates a shallow copy of the current Object.

(Herdado de Object)
Read(HttpRequest)

Quando substituído em uma classe derivada, desserializa uma solicitação HTTP em uma matriz de valores de parâmetro de método Web.When overridden in a derived class, deserializes an HTTP request into an array of Web method parameter values.

(Herdado de MimeParameterReader)
Read(NameValueCollection)

Move uma coleção de pares nome/valor para uma matriz de objetos que representam valores de parâmetro de método.Translates a collection of name/value pairs into an array of objects representing method parameter values.

ToString()

Retorna uma cadeia de caracteres que representa o objeto atual.Returns a string that represents the current object.

(Herdado de Object)

Aplica-se a

Confira também