AVEVA OMI Software Developer Kit



Url to load.
LoadUrlAndWait Method
Loads a Url and wait for it to finish loading.
Syntax
'Declaration
 
<SuppressMessageAttribute("Microsoft.Design", 
   "CA1054:UriParametersShouldNotBeStrings", 
   MessageId="0#")>
Public Sub LoadUrlAndWait( _
   ByVal url As String _
) 
'Usage
 
Dim instance As WebControl
Dim url As String
 
instance.LoadUrlAndWait(url)
[SuppressMessage("Microsoft.Design", 
   "CA1054:UriParametersShouldNotBeStrings", 
   MessageId="0#")]
public void LoadUrlAndWait( 
   string url
)
[SuppressMessage("Microsoft.Design", 
   "CA1054:UriParametersShouldNotBeStrings", 
   MessageId="0#")]
public:
void LoadUrlAndWait( 
   String^ url
) 

Parameters

url
Url to load.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also