VDataSectionGetValue Method |
Returns a property within a section (eg: vevent/vcard) as a VDataValue
Namespace: ARPDev.DAVLIBAssembly: ARPDev.DAVLIB (in ARPDev.DAVLIB.dll) Version: 1.0.0.0 (1.0.0.0)
Syntaxpublic VDataValue GetValue(
string sLabel,
ValueMatchType vMatchType = ValueMatchType.LabelOnly,
string sAttributeStringMatch = null
)
Public Function GetValue (
sLabel As String,
Optional vMatchType As ValueMatchType = ValueMatchType.LabelOnly,
Optional sAttributeStringMatch As String = Nothing
) As VDataValue
public:
VDataValue^ GetValue(
String^ sLabel,
ValueMatchType vMatchType = ValueMatchType::LabelOnly,
String^ sAttributeStringMatch = nullptr
)
member GetValue :
sLabel : string *
?vMatchType : ValueMatchType *
?sAttributeStringMatch : string
(* Defaults:
let _vMatchType = defaultArg vMatchType ValueMatchType.LabelOnly
let _sAttributeStringMatch = defaultArg sAttributeStringMatch null
*)
-> VDataValue
Parameters
- sLabel
- Type: SystemString
Label name within VDataSection (eg: ORG) - vMatchType (Optional)
- Type: ARPDev.DAVLIBValueMatchType
Determine's whether to match just the label name or by attributes - sAttributeStringMatch (Optional)
- Type: SystemString
Attribute string to match. Match is acheived by a case-insensative string search
Return Value
Type:
VDataValue
Remarks
See Also