SoapMessage.GetReturnValue Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the return value of an XML Web service method.
public:
System::Object ^ GetReturnValue();
public object GetReturnValue ();
member this.GetReturnValue : unit -> obj
Public Function GetReturnValue () As Object
Returns
An Object representing the return value of the XML Web service method.
Exceptions
The XML Web service method does not have a return value.
-or-
The return value is not available.
Examples
myStreamWriter->WriteLine( "The values of the return parameter are:" );
myStreamWriter->WriteLine(
"The value of the return parameter is: {0}", message->GetReturnValue() );
myStreamWriter.WriteLine("The values of the return parameter are:");
myStreamWriter.WriteLine("The value of the return parameter is: {0}",
message.GetReturnValue());
myStreamWriter.WriteLine("The values of the return parameter are:")
myStreamWriter.WriteLine("The value of the return parameter is: {0}", _
message.GetReturnValue())
Remarks
If a return value is not available, ASP.NET throws InvalidOperationException when accessing the GetReturnValue property.
In a SoapClientMessage the return value is available when the SoapMessageStage value is AfterDeserialize. In a SoapServerMessage the return value is available when SoapMessageStage value is BeforeSerialize.