Returns all "masked" URLs from the text in the full Url format http://... . Masking is used in various editors and textboxes so the user could limit which URLs are caught.

Namespace: MonoSoftware.MonoX.Utilities
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public static MatchCollection GetMaskedUrls(
	string content
)
Visual Basic
Public Shared Function GetMaskedUrls ( 
	content As String
) As MatchCollection
Visual C++
public:
static MatchCollection^ GetMaskedUrls(
	String^ content
)
F#
static member GetMaskedUrls : 
        content : string -> MatchCollection 

Parameters

content
Type: System..::..String
HTML content.

Return Value

Type: MatchCollection
Match collection with all URLs from the HTML.

See Also