IStatusParserTryParse Method |
Converts a string to an equivalent
Status object. A return value indicates whether the operation succeeded.
Namespace: net.openstack.CoreAssembly: openstacknet (in openstacknet.dll) Version: 1.7.7+Branch.master.Sha.25d803f397c8693c2c13777ef6675f796f520f2c
Syntax bool TryParse(
string value,
out Status status
)
Function TryParse (
value As String,
<OutAttribute> ByRef status As Status
) As Boolean
bool TryParse(
String^ value,
[OutAttribute] Status^% status
)
abstract TryParse :
value : string *
status : Status byref -> bool
Parameters
- value
- Type: SystemString
A string containing a status to convert. - status
- Type: net.openstack.Core.DomainStatus
When this method returns, contains a Status instance
equivalent to value, if the conversion succeeded, or if
the conversion failed. The conversion fails if the value parameter is
or is not of the correct format.
Return Value
Type:
Boolean if
value was converted successfully; otherwise,
.
Version Information .NET Framework
Supported in: 4.5
openstack.net
Supported in: 1.6, 1.5, 1.4, 1.3.6
See Also