﻿<?xml version="1.0" encoding="utf-8"?><Type Name="NopReturnReader" FullName="System.Web.Services.Protocols.NopReturnReader"><TypeSignature Language="C#" Value="public class NopReturnReader : System.Web.Services.Protocols.MimeReturnReader" Maintainer="auto" /><AssemblyInfo><AssemblyName>System.Web.Services</AssemblyName><AssemblyPublicKey></AssemblyPublicKey><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo><ThreadSafetyStatement>Gtk# is thread aware, but not thread safe; See the &lt;link location="node:gtk-sharp/programming/threads"&gt;Gtk# Thread Programming&lt;/link&gt; for details.</ThreadSafetyStatement><Base><BaseTypeName>System.Web.Services.Protocols.MimeReturnReader</BaseTypeName></Base><Interfaces /><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para><see cref="T:System.Web.Services.Protocols.NopReturnReader" /> and other classes in the <see cref="N:System.Web.Services.Protocols" /> namespace support the .NET Framework's implementations of Web services via the HTTP-GET and HTTP-POST operations. 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. Web service writers and readers use HTTP for transport but don't exchange messages using the SOAP standard.</para><para>The <see cref="T:System.Web.Services.Protocols.NopReturnReader" /> class provides a non-reading implementation of the interface of the abstract class <see cref="T:System.Web.Services.Protocols.MimeReturnReader" />.</para><para>You typically will not need to use the <see cref="T:System.Web.Services.Protocols.NopReturnReader" /> class. Instead, when the Wsdl.exe tool generates client proxy code according to the HTTP-GET or HTTP-POST implementations, .it applies the <see cref="T:System.Web.Services.Protocols.HttpMethodAttribute" /> to each Web method and, by default, sets the attribute's <see cref="P:System.Web.Services.Protocols.HttpMethodAttribute.ReturnFormatter" /> property to <see cref="T:System.Web.Services.Protocols.XmlReturnReader" />, another class derived from <see cref="T:System.Web.Services.Protocols.MimeReturnReader" />. Wsdl.exe sets the property to <see cref="T:System.Web.Services.Protocols.NopReturnReader" /> if it is otherwise unable to determine a value.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Serves as a non-acting reader of incoming response return values for Web service clients implemented using HTTP but without SOAP.</para></summary></Docs><Members><Member MemberName=".ctor"><MemberSignature Language="C#" Value="public NopReturnReader ();" /><MemberType>Constructor</MemberType><ReturnValue /><Parameters /><Docs><remarks>To be added</remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes a new instance of the <see cref="T:System.Web.Services.Protocols.NopReturnReader" /> class. </para></summary></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="GetInitializer"><MemberSignature Language="C#" Value="public override object GetInitializer (System.Web.Services.Protocols.LogicalMethodInfo methodInfo);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="methodInfo" Type="System.Web.Services.Protocols.LogicalMethodInfo" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>An initializer is an object passed as a parameter to the <see cref="M:System.Web.Services.Protocols.NopReturnReader.Initialize(System.Object)" /> method. For the <see cref="T:System.Web.Services.Protocols.NopReturnReader" /> class, the initializer is the instance referred to by the keyword this.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns an initializer for the specified method.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>An initializer for the specified method.</para></returns><param name="methodInfo"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Web.Services.Protocols.LogicalMethodInfo" /> that specifies the Web method for which the initializer is obtained.</param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Initialize"><MemberSignature Language="C#" Value="public override void Initialize (object initializer);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Void</ReturnType></ReturnValue><Parameters><Parameter Name="initializer" Type="System.Object" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="M:System.Web.Services.Protocols.NopReturnReader.Initialize(System.Object)" /> method does nothing. It is invoked at the time a response is processed. The input parameter, <paramref name="initializer" />, is another instance of the class that is obtained during client initialization.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Initializes an instance.</para></summary><param name="initializer"><attribution license="cc4" from="Microsoft" modified="false" />Another instance of the <see cref="T:System.Web.Services.Protocols.NopReturnReader" /> class, on which the <see cref="M:System.Web.Services.Protocols.NopReturnReader.GetInitializer(System.Web.Services.Protocols.LogicalMethodInfo)" /> method was previously called.</param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member><Member MemberName="Read"><MemberSignature Language="C#" Value="public override object Read (System.Net.WebResponse response, System.IO.Stream responseStream);" /><MemberType>Method</MemberType><ReturnValue><ReturnType>System.Object</ReturnType></ReturnValue><Parameters><Parameter Name="response" Type="System.Net.WebResponse" /><Parameter Name="responseStream" Type="System.IO.Stream" /></Parameters><Docs><remarks><attribution license="cc4" from="Microsoft" modified="false" /><para>The <see cref="T:System.Web.Services.Protocols.NopReturnReader" /> class's implementation of the <see cref="M:System.Web.Services.Protocols.MimeReturnReader.Read(System.Net.WebResponse,System.IO.Stream)" /> method does no reading. Instead it returns null. It also closes the response stream.</para></remarks><summary><attribution license="cc4" from="Microsoft" modified="false" /><para>Returns null instead of deserializing the HTTP response stream into a Web method return value.</para></summary><returns><attribution license="cc4" from="Microsoft" modified="false" /><para>null.</para></returns><param name="response"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.Net.WebResponse" /> object  containing the output message for an operation.</param><param name="responseStream"><attribution license="cc4" from="Microsoft" modified="false" />A <see cref="T:System.IO.Stream" /> whose content is the body of the HTTP response represented by the <paramref name="response" /> parameter.</param></Docs><AssemblyInfo><AssemblyVersion>1.0.5000.0</AssemblyVersion><AssemblyVersion>2.0.0.0</AssemblyVersion></AssemblyInfo></Member></Members></Type>