V8FastArgs.GetDateTime Method |
Gets the
DateTime value of the argument at the specified index.
Namespace: Microsoft.ClearScript.V8.FastProxyAssembly: ClearScript.V8 (in ClearScript.V8.dll) Version: 7.5.0
Syntaxpublic DateTime GetDateTime(
int index,
string name = null
)
Public Function GetDateTime (
index As Integer,
Optional name As String = Nothing
) As DateTime
public:
DateTime GetDateTime(
int index,
String^ name = nullptr
)
member GetDateTime :
index : int *
?name : string
(* Defaults:
let _name = defaultArg name null
*)
-> DateTime
Parameters
- index Int32
- The argument index.
- name String (Optional)
- An optional argument or property name.
Return Value
DateTimeThe
DateTime value of the argument at the specified index.
Remarks
This method throws an exception if the operation fails.
See Also