Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Tries to get the property value specified by the name parameter and type specified by the property parameter.
Namespace: Microsoft.SqlServer.Management.Smo
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Private Function TryGetPropertyValue ( _
name As String, _
<OutAttribute> ByRef value As Object _
) As Boolean Implements ISfcPropertySet.TryGetPropertyValue
'Usage
Dim instance As PropertyCollection
Dim name As String
Dim value As Object
Dim returnValue As Boolean
returnValue = CType(instance, ISfcPropertySet).TryGetPropertyValue(name, _
value)
bool ISfcPropertySet.TryGetPropertyValue(
string name,
out Object value
)
private:
virtual bool TryGetPropertyValue(
String^ name,
[OutAttribute] Object^% value
) sealed = ISfcPropertySet::TryGetPropertyValue
private abstract TryGetPropertyValue :
name:string *
value:Object byref -> bool
private override TryGetPropertyValue :
name:string *
value:Object byref -> bool
JScript unterstützt die Verwendung expliziter Schnittstellenimplementierungen, aber nicht die Deklaration neuer Schnittstellenimplementierungen.
Parameter
- name
Typ: System.String
A string value that specifies the name of the property.
- value
Typ: System.Object%
An Object.
Rückgabewert
Typ: System.Boolean
A Boolean value, True if the collection contains the property value, otherwise False.
Implementiert
ISfcPropertySet.TryGetPropertyValue(String, Object%)