TryGetPropertyValue(T)-Methode (String, T)
Attempts to get the property value. Verweisen Sie nicht direkt im Code auf dieses Element. Unterstützt die SQL Server-Infrastruktur.
Namespace: Microsoft.SqlServer.Management.Sdk.Sfc
Assembly: Microsoft.SqlServer.Management.Sdk.Sfc (in Microsoft.SqlServer.Management.Sdk.Sfc.dll)
Syntax
'Declaration
Function TryGetPropertyValue(Of T) ( _
name As String, _
<OutAttribute> ByRef value As T _
) As Boolean
'Usage
Dim instance As ISfcPropertySet
Dim name As String
Dim value As T
Dim returnValue As Boolean
returnValue = instance.TryGetPropertyValue(name, _
value)
bool TryGetPropertyValue<T>(
string name,
out T value
)
generic<typename T>
bool TryGetPropertyValue(
String^ name,
[OutAttribute] T% value
)
abstract TryGetPropertyValue :
name:string *
value:'T byref -> bool
JScript bietet keine Unterstützung für die Verwendung generischer Typen und Methoden.
Typparameter
- T
The type of the property value.
Parameter
- name
Typ: System. . :: . .String
The name of the property.
- value
Typ: T%
An Object that represents the property value.
Rückgabewert
Typ: System. . :: . .Boolean
true if the property value is successfully retrieved; otherwise, false.