NevronOpenVision
Nevron.Nov.Networking Namespace / NWebRequest Class
Fields Properties Methods Events


NWebRequest Class Members

The following tables list the members exposed by NWebRequest.

Protected Fields
 NameDescription
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Internal Field  
Top
Public Properties
 NameDescription
Public PropertyGets or sets whether the response download for this request can be shared with other similar requests that are currently in-progress. Shared downloads is only supported for GET requests, so this property has no effect, if the Method is not equal to GET. By default set to true.  
Public PropertyDelegate which is called when a stream needs to be created to store the response data. If set to null, the request by default creates a new MemoryStream.  
Public PropertyGets the date-time at which this request has been sent. Valid only after Send() was called.  
Public PropertyGets the status of this request.  
Public PropertyGets the Uniform Resource Identifier (URI) associated with this request.  
Top
Public Methods
 NameDescription
Public MethodAborts this web request. This method has no effect if the request has been completed. If the request is not submitted or is in-progress, the Completed event is raised immediately, with an Aborted respose type.  
Public MethodSends a web request. When a response arrives or if the request gets aborted, this request will raise the Completed event. Use the Status property of the response to determine whether the request has been executed successfully.  
Public Methodstatic (Shared in Visual Basic)Tries to create a new URI request for the resourse located at the specified URI. Current recognized are HTTP, HTTPS and FILE URIs.  
Top
Protected Methods
 NameDescription
Internal Method  
Internal Method  
Internal Method  
Protected MethodCalled whenever the request status is changed.  
Internal Method  
Protected MethodSets a new status for this request and calls OnStatusChanged.  
Internal Method  
Internal Method  
Internal Method  
Internal Method  
Protected MethodThrows an exception if the request is submitted and cannot be modified.  
Internal Method  
Internal Method  
Top
Public Events
 NameDescription
Public EventRaised when the request is completed. The request and the response are passed as arguments in the event args.  
Public EventRaised when the request progressed in downloading the response stream. The request, download size and downloaded size are passed as arguments in the event args.  
Public EventRaised when the request ended the download of the response stream. The request and download size are passed as arguments in the event args.  
Public EventRaised when the request starts to download the response stream. The request and download size are passed as arguments in the event args.  
Top
See Also