InfoConnect for Airlines
Navigate(String,String,Byte[],String) Method


The Web document URL.
The name of the frame in which to load the document.
HTTP POST data, such as form data.
HTTP headers to add to the default headers.
Navigates to the URL.
Syntax
'Declaration
 
<SuppressMessageAttribute(Category="Microsoft.Design", 
   CheckId="CA1054:UriParametersShouldNotBeStrings", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")>
Overloads Sub Navigate( _
   ByVal Url As String, _
   ByVal targetFrameName As String, _
   ByVal postData() As Byte, _
   ByVal additionalHeaders As String _
) 
'Usage
 
Dim instance As IWebControl
Dim Url As String
Dim targetFrameName As String
Dim postData() As Byte
Dim additionalHeaders As String
 
instance.Navigate(Url, targetFrameName, postData, additionalHeaders)
[SuppressMessage(Category="Microsoft.Design", 
   CheckId="CA1054:UriParametersShouldNotBeStrings", 
   Scope="", 
   Target="", 
   MessageId="", 
   Justification="")]
void Navigate( 
   string Url,
   string targetFrameName,
   byte[] postData,
   string additionalHeaders
)

Parameters

Url
The Web document URL.
targetFrameName
The name of the frame in which to load the document.
postData
HTTP POST data, such as form data.
additionalHeaders
HTTP headers to add to the default headers.
Remarks
In the frame pointed to by targetFrameName, additional postdata and headers can be passed to the server at the same time.
See Also