EntityFrameworkDataServiceProvider.GetOpenPropertyValues Method
Get the name and values of all the properties defined in the given instance of an open type.
Namespace: System.Data.Services.Providers
Assembly: Microsoft.Data.Services (in Microsoft.Data.Services.dll)
Syntax
'Declaration
Public Overridable Function GetOpenPropertyValues ( _
target As Object _
) As IEnumerable(Of KeyValuePair(Of String, Object))
'Usage
Dim instance As EntityFrameworkDataServiceProvider
Dim target As Object
Dim returnValue As IEnumerable(Of KeyValuePair(Of String, Object))
returnValue = instance.GetOpenPropertyValues(target)
public virtual IEnumerable<KeyValuePair<string, Object>> GetOpenPropertyValues(
Object target
)
public:
virtual IEnumerable<KeyValuePair<String^, Object^>>^ GetOpenPropertyValues(
Object^ target
)
abstract GetOpenPropertyValues :
target:Object -> IEnumerable<KeyValuePair<string, Object>>
override GetOpenPropertyValues :
target:Object -> IEnumerable<KeyValuePair<string, Object>>
public function GetOpenPropertyValues(
target : Object
) : IEnumerable<KeyValuePair<String, Object>>
Parameters
- target
Type: System.Object
instance of a open type.
Return Value
Type: System.Collections.Generic.IEnumerable<KeyValuePair<String, Object>>
collection of name and values of all the open properties.
Implements
IDataServiceQueryProvider.GetOpenPropertyValues(Object)