Creates and Updates URL file in the specified path.

Syntax

Visual Basic (declaration)
Public Function CreateURL( _ 
ByVal AuthenticationTicket as String, _ ByVal Path as String, _ ByVal AddressURL as String) as XmlNode

C# (declaration)
public XmlNode CreateURL( 
string AuthenticationTicket, string Path, string AddressURL)

Parameters

AuthenticationTicket
    string infoRouter ticket
Path
    string The path of the document that will be created as internet shortcut. The extention must be .url
AddressURL
    string The URI of the internet shorcut.

Return Value

returns xml fragment.
<response success="true" error="">
if success attribute is "true", the document has been created successfully.
if success attribute is "false", the error attribute indicates the encountered error.

Remarks

Valid protocols are http, https, ftp

See Also