LinkGetNormalizedURL Method |
Prepends http:// to a string if it does not contain ://
or @.
This can be important when passing a url to other APIs that expect a URL Scheme.
Namespace:
pdftron.PDF.Annots
Assembly:
pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax public static string GetNormalizedURL(
string url
)
Public Shared Function GetNormalizedURL (
url As String
) As String
public:
static String^ GetNormalizedURL(
[InAttribute] String^ url
)
pdftron.PDF.Annots.Link.GetNormalizedURL = function(url);
Parameters
- url
- Type: SystemString
The string to normlize
Return Value
Type:
String A string that possibly is prefixed with http://
See Also