SPExternalApplicationProvider.GetRegistrationInformation method
When implemented in a derived class, gets information needed for a UI on which an external application is registered.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public MustOverride Function GetRegistrationInformation ( _
web As SPWeb _
) As SPExternalApplicationRegistrationInformation
'Usage
Dim instance As SPExternalApplicationProvider
Dim web As SPWeb
Dim returnValue As SPExternalApplicationRegistrationInformation
returnValue = instance.GetRegistrationInformation(web)
public abstract SPExternalApplicationRegistrationInformation GetRegistrationInformation(
SPWeb web
)
Parameters
web
Type: Microsoft.SharePoint.SPWebThe Web site for which the application is being registered.
Return value
Type: Microsoft.SharePoint.SPExternalApplicationRegistrationInformation
An object that contains the values that an object that a caller can use to generate the UI for registration of the External Application XML.
Remarks
For more information about the role of this method, see How to: Create a Custom External Application Provider.
See also
Reference
SPExternalApplicationProvider class