ClassRecord.GetRawValue(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Retrieves the value of the provided memberName
.
public:
System::Object ^ GetRawValue(System::String ^ memberName);
public object? GetRawValue (string memberName);
member this.GetRawValue : string -> obj
Public Function GetRawValue (memberName As String) As Object
Parameters
- memberName
- String
The name of the member.
Returns
For primitive types like Int32, string
or DateTime returns their value.
For nulls, returns a null.
For other types that are not arrays, returns an instance of ClassRecord.
For single-dimensional arrays returns SZArrayRecord<T> where the generic type is the primitive type or ClassRecord.
For jagged and multi-dimensional arrays, returns an instance of ArrayRecord.