| TriggerReaderTryGetParameterT Method |
[This is preliminary documentation and is subject to change.]
Tries the get the parameter at the specified index.
Namespace:
Monkeyspeak
Assembly:
Monkeyspeak (in Monkeyspeak.dll) Version: 7.0.10.28723 (7.0.10.28723)
Syntax public bool TryGetParameter<T>(
int index,
out T value
)
where T : struct, new()
Public Function TryGetParameter(Of T As {Structure, New}) (
index As Integer,
<OutAttribute> ByRef value As T
) As Boolean
public:
generic<typename T>
where T : value class, gcnew()
bool TryGetParameter(
int index,
[OutAttribute] T% value
)
member TryGetParameter :
index : int *
value : 'T byref -> bool when 'T : struct, new()
Parameters
- index
- Type: SystemInt32
The index. - value
- Type: T
The value.
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Monkeyspeak.TriggerReader.TryGetParameter``1(System.Int32,``0@)"]
Return Value
Type:
Booleantrue on success;
false otherwise
See Also