Gets the parameter information for the AsyncState parameter of a Begin method in an asynchronous invocation.
a System.Reflection.ParameterInfo
The asynchronous design pattern in the common language runtime involves calling a Begin method to start the asynchronous method invocation and an End method to complete the invocation. The Begin method takes two additional parameters besides the parameters defined by the synchronous version of the method: one to store a delegate and one to store any state information that needs to be passed on to the delegate. This property represents the state information that needs to be passed into the delegate.
For more information on invoking XML Web services asynchronously, see [<topic://cpconInvokingWebServicesAsynchronously>].