Method TryParse
TryParse(string, string, out Property)
Create a new Property instance by parsing the given
rawPropertyType and rawValue.
Declaration
public static bool TryParse(string rawPropertyType, string rawValue, out Property property)
Parameters
| Type | Name | Description |
|---|---|---|
| string | rawPropertyType | Property type to parse. |
| string | rawValue | Property value to parse. |
| Property | property | Created Property if the parsing was successful. |
Returns
| Type | Description |
|---|---|
| bool | Return true if the given strings could be parsed into a valid Property; return false otherwise. |