PostSharpAPI ReferencePost­Sharp.​SerializationIArguments­ReaderTry­Get­Value
Open sandboxFocus

IArgumentsReader.TryGetValue Method

TryGetValue<T>(String, out T, String)

Attempts to read a value from the collection, and does not throw an exception if the value does not exist.

Declaration
bool TryGetValue<T>(string name, out T value, string scope = null)
Parameters
Type Name Description
String name

Argument name.

T value

At output, set to the value of the argument named name in the given optional scope.

String scope

An optional prefix of name, similar to a namespace.

Returns
Type Description
Boolean

true if the value is defined, otherwise false.

Type Parameters
Name Description
T

Value type.