'Declaration
<CanBeNullAttribute()> <ContractAnnotationAttribute("null => null; notnull => notnull")> Public Shared Function ToUAWriteArguments( _ ByVal writeValueArguments As UAWriteValueArguments _ ) As UAWriteArguments
'Usage
Dim writeValueArguments As UAWriteValueArguments Dim value As UAWriteArguments value = UAWriteValueArguments.ToUAWriteArguments(writeValueArguments)
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public static UAWriteArguments ToUAWriteArguments( UAWriteValueArguments writeValueArguments )
[CanBeNull()] [ContractAnnotation("null => null; notnull => notnull")] public: static UAWriteArguments^ ToUAWriteArguments( UAWriteValueArguments^ writeValueArguments )
Parameters
- writeValueArguments
- The write value arguments to be converted.
The value of this parameter can be
null
(Nothing
in Visual Basic).
Return Value
The write arguments that corresponds to the write value arguments.
null
if the write value arguments passed in were null
.
This method can return null
(Nothing
in Visual Basic).