Freigeben über


SPServiceApplicationProxyGroup.ContainsType-Methode

Bestimmt, ob ein Dienstanwendungsproxy des angegebenen Typs in der Gruppe vorhanden ist.

Namespace:  Microsoft.SharePoint.Administration
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

'Declaration
Public Function ContainsType ( _
    serviceApplicationProxyType As Type _
) As Boolean
'Usage
Dim instance As SPServiceApplicationProxyGroup
Dim serviceApplicationProxyType As Type
Dim returnValue As Boolean

returnValue = instance.ContainsType(serviceApplicationProxyType)
public bool ContainsType(
    Type serviceApplicationProxyType
)

Parameter

  • serviceApplicationProxyType
    Typ: System.Type

    Der Proxytyp der Dienstanwendung.

Rückgabewert

Typ: System.Boolean
true , wenn die Typ des Dienstanwendungsproxys in der Dienstanwendungsproxy-Gruppe vorhanden ist; andernfalls false.

Ausnahmen

Ausnahme Bedingung
ArgumentNullException

Der Parameter serviceApplicationProxyType ist ein Nullverweis (Nothing in Visual Basic).

Hinweise

Im folgenden Beispiel wird bestimmt, ob ein Dienstanwendungsproxy des angegebenen Typs in der Standardproxygruppe für Service-Anwendung vorhanden ist.

    SPServiceApplicationProxyGroup defaultProxyGroup =
        SPServiceApplicationProxyGroup.Default;
    return defaultProxyGroup.ContainsType(typeof(MyServiceApplicationProxy));

Siehe auch

Referenz

SPServiceApplicationProxyGroup Klasse

SPServiceApplicationProxyGroup-Member

Microsoft.SharePoint.Administration-Namespace