Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Converts the specified member of an underlying data object to its corresponding mapped member.
Namespace: Microsoft.VisualStudio.Data.Framework
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'Declaration
Public Function ConvertToMappedMember ( _
typeName As String, _
mappedMemberName As String, _
underlyingValues As Object() _
) As Object
public Object ConvertToMappedMember(
string typeName,
string mappedMemberName,
Object[] underlyingValues
)
public:
virtual Object^ ConvertToMappedMember(
String^ typeName,
String^ mappedMemberName,
array<Object^>^ underlyingValues
) sealed
abstract ConvertToMappedMember :
typeName:string *
mappedMemberName:string *
underlyingValues:Object[] -> Object
override ConvertToMappedMember :
typeName:string *
mappedMemberName:string *
underlyingValues:Object[] -> Object
public final function ConvertToMappedMember(
typeName : String,
mappedMemberName : String,
underlyingValues : Object[]
) : Object
Parameters
- typeName
Type: System.String
The name of the underlying type.
- mappedMemberName
Type: System.String
The name of the mapped member to convert to that belongs to the mapped type.
- underlyingValues
Type: array<System.Object[]
An array containing the values stored for the data source–specific members that are to be converted to a mapped member value.
Return Value
Type: System.Object
The value of the mapped member converted from the underlying values.
Implements
IVsDataMappedObjectConverter.ConvertToMappedMember(String, String, array<Object[])
Remarks
This method delegates the call to the ConvertToMappedMember method and passes nulla null reference (Nothing in Visual Basic) for the last parameter.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
DataMappedObjectConverter Class