SoapMessage.EnsureInStage Method

Definition

When overridden in a derived class, asserts that the current SoapMessageStage is a stage where in parameters are available.

protected:
 abstract void EnsureInStage();
protected abstract void EnsureInStage ();
abstract member EnsureInStage : unit -> unit
Protected MustOverride Sub EnsureInStage ()

Exceptions

In 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 in parameters are available after the SOAP request is deserialized in the AfterDeserialize stage. For an XML Web service client, the in parameters are available prior to the SOAP request serialization process in the BeforeSerialize stage.

EnsureInStage can be called during any SoapMessageStage, however an InvalidOperationException is thrown when in parameters are not available.

Applies to