WebFlyPostBackManager life cycle includes two processes, one is collecting and retrieving MetaDataCollection and the other one is requesting an execution of methods and retrieving the response.
MetaDataCollection Retrieval
WebFlyPostBackManager by default is set to retrieve the MetaDataCollection automatically at PageLoad. Alternatively we can retrieve the MetaDataCollection manually, which means it will be collected and retrieved when we send a request of method execution at the first time.
AutoLoadMetaData
|
At PageLoad WebFlyPostBackManager collects and retrieves the MetaDataCollection |
Manually Load MetaData
|
WebFlyPostBackManager will not retrieve the MetaDataCollection at PageLoad. During the first execution of InvokeMethod, WebFlyPostBackManager will check whether the MetaDataCollection already existed. If the MetaDataCollection does not exist, it will request MetaDataCollection first. When collecting the MetaDataCollection, the InvokeMethod request is pending, until the MetaDataCollection is retrieved |
Request and Response
When WebFlyPostBackManager requests an execution of method , it will wait for response from WebService / WebForm for certain timeout interval. The response can be either a success response, error response or no response which means it is already timeout. Each of this response type has its corresponding ClientSideEvents where you can do some action later on.
Success

Error

TimeOut

Related Topics
{Overview}
{Features}