|
DiffMatchPatchEncodeURI Method
|
Encodes a string with URI-style % escaping.
Compatible with JavaScript's encodeURI function.
Namespace: GSF.TextAssembly: GSF.Core (in GSF.Core.dll) Version: 2.4.256-beta+0e7e94d39a9b10efe7e26e3b8d5130afc0dd4d74
Syntaxpublic static string EncodeURI(
string str
)
Public Shared Function EncodeURI (
str As String
) As String
public:
static String^ EncodeURI(
String^ str
)
static member EncodeURI :
str : string -> string
GSF.Text.DiffMatchPatch.EncodeURI = function(str);
View SourceParameters
- str String
- The string to encode
Return Value
StringThe encoded string
See Also