SoapMessage::EnsureStage Method (SoapMessageStage)
.NET Framework (current version)
Ensures that the SoapMessageStage of the call to the XML Web service method is the stage or stages passed in. If the current processing stage is not one of the stages passed in, an exception is thrown.
Assembly: System.Web.Services (in System.Web.Services.dll)
Parameters
- stage
-
Type:
System.Web.Services.Protocols::SoapMessageStage
The SoapMessageStage asserted.
| Exception | Condition |
|---|---|
| InvalidOperationException | The current SoapMessageStage is not the asserted stage or stages. |
Multiple stages can be asserted by performing a bitwise OR operation on multiple instances of the SoapMessageStage class.
EnsureStage can be called during any SoapMessageStage.
The following example asserts that the current SoapMessageStage is either BeforeSerialize or BeforeDeserialize; if it is not, an exception is thrown.
.NET Framework
Available since 1.1
Available since 1.1
Show: