SoapMessage.EnsureOutStage 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.
When overridden in a derived class, asserts that the current SoapMessageStage stage is a stage where out parameters are available.
protected:
abstract void EnsureOutStage();
protected abstract void EnsureOutStage ();
abstract member EnsureOutStage : unit -> unit
Protected MustOverride Sub EnsureOutStage ()
Exceptions
Out parameters are not available.
Remarks
The asserted stage is different for XML Web service clients and XML Web service methods. An XML Web service method's out parameters are available prior to the SOAP response serialization process in the BeforeSerialize stage. In an XML Web service client, the out parameters are available after the SOAP response deserialization process in the AfterDeserialize stage.
EnsureOutStage can be called during any SoapMessageStage, however an InvalidOperationException is thrown when out parameters are not available.