EdmStructuredValue.FindPropertyValue Method
Retrieves the value corresponding to the given property name. Returns null if no such value exists.
Namespace: Microsoft.Data.Edm.Library.Values
Assembly: Microsoft.Data.Edm (in Microsoft.Data.Edm.dll)
Syntax
'Declaration
Public Function FindPropertyValue ( _
propertyName As String _
) As IEdmPropertyValue
'Usage
Dim instance As EdmStructuredValue
Dim propertyName As String
Dim returnValue As IEdmPropertyValue
returnValue = instance.FindPropertyValue(propertyName)
public IEdmPropertyValue FindPropertyValue(
string propertyName
)
public:
virtual IEdmPropertyValue^ FindPropertyValue(
String^ propertyName
) sealed
abstract FindPropertyValue :
propertyName:string -> IEdmPropertyValue
override FindPropertyValue :
propertyName:string -> IEdmPropertyValue
public final function FindPropertyValue(
propertyName : String
) : IEdmPropertyValue
Parameters
- propertyName
Type: System.String
The name of the property that describes the value being found.
Return Value
Type: Microsoft.Data.Edm.Values.IEdmPropertyValue
The requested value, or null if no such value exists.
Implements
IEdmStructuredValue.FindPropertyValue(String)