SPFieldDateTime.ParseValue method
Parses a potential value of the field and returns an object that can be assigned as the value of the field.
Namespace: Microsoft.SharePoint
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Overrides Function ParseValue ( _
item As SPListItem, _
value As String _
) As Object
'Usage
Dim instance As SPFieldDateTime
Dim item As SPListItem
Dim value As String
Dim returnValue As Object
returnValue = instance.ParseValue(item, _
value)
public override Object ParseValue(
SPListItem item,
string value
)
Parameters
item
Type: Microsoft.SharePoint.SPListItemAn SPListItem containing a field whose new value needs to be validated.
value
Type: System.StringA string with the value to be parsed and returned.
Return value
Type: System.Object
A parsed version of value.
Remarks
This implementation converts value to a DateTime object and returns it. (If value is an empty string or a null reference (Nothing in Visual Basic), a null reference (Nothing in Visual Basic) is returned.)