| VDataUtilityEscapeDelimitedValue Method | 
 Escapes an item for inclusion in a delimited list
 
 
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
 Syntax
Syntaxpublic static string EscapeDelimitedValue(
	string sPropertyValue,
	string sDelimiter = ";",
	string EscapedDelimiter = "\;"
)
Public Shared Function EscapeDelimitedValue ( 
	sPropertyValue As String,
	Optional sDelimiter As String = ";",
	Optional EscapedDelimiter As String = "\;"
) As String
public:
static String^ EscapeDelimitedValue(
	String^ sPropertyValue, 
	String^ sDelimiter = L";", 
	String^ EscapedDelimiter = L"\;"
)
static member EscapeDelimitedValue : 
        sPropertyValue : string * 
        ?sDelimiter : string * 
        ?EscapedDelimiter : string 
(* Defaults:
        let _sDelimiter = defaultArg sDelimiter ";"
        let _EscapedDelimiter = defaultArg EscapedDelimiter "\;"
*)
-> string 
Parameters
- sPropertyValue
- Type: SystemString
 
- sDelimiter (Optional)
- Type: SystemString
 
- EscapedDelimiter (Optional)
- Type: SystemString
 
Return Value
Type: 
String Remarks
Remarks See Also
See Also