DtoInfo<T>.TryGetProperty method (1 of 2)

Returns the property of the specified name.

public IDtoProperty<T>? TryGetProperty(string name)
parameter description
name The property name.

Return Value

Returns null if the property does not exist.

See Also


DtoInfo<T>.TryGetProperty<TValue> method (2 of 2)

Returns the property of the specified name.

public DtoProperty<T, TValue>? TryGetProperty<TValue>(string name)
parameter description
TValue The value type of the property.
name The property name.

Return Value

Returns null if the property does not exist.

See Also