ClientApplicationWebPartBase.GetExternalApplicationRequestResult Method
Gets an object that can be used to create a control that renders the Web Part.
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Protected Function GetExternalApplicationRequestResult As SPExternalApplicationRequestResult
'Usage
Dim returnValue As SPExternalApplicationRequestResult
returnValue = Me.GetExternalApplicationRequestResult()
protected SPExternalApplicationRequestResult GetExternalApplicationRequestResult()
Return Value
Type: Microsoft.SharePoint.SPExternalApplicationRequestResult
An object that is used to create a control that renders the Web Part.
Exceptions
Exception | Condition |
---|---|
InvalidOperationException | The external application has not been properly registered with either a URL or External Application XML. |
SPExternalApplicationRegistrationException | The External Application XML is invalid. |
Remarks
This method is typically called by the CreateChildControls() method of a class derived from ClientApplicationWebPartBase. The GetContentControl(String) method of the SPExternalApplicationRequestResult object that is returned is then called by the CreateChildControls() method to render the Web Part.
The two major steps of this method are:
Create an SPExternalApplicationRequestProperties object and initialize its properties.
Pass the object as the parameter to a call of the OnApplicationWebPartCreateChildControls(SPExternalApplicationRequestProperties) method of the External Application Provider (EAP) that is enabled for the Web application’s parent Web service.
The GetExternalApplicationRequestResult() method then returns the SPExternalApplicationRequestResult object that is returned to it by the OnApplicationWebPartCreateChildControls(SPExternalApplicationRequestProperties) method.
Important
The OnApplicationWebPartCreateChildControls(SPExternalApplicationRequestProperties) of the default EAP returns a null reference (Nothing in Visual Basic) and, hence, so does the GetExternalApplicationRequestResult() method when the default EAP is in use.
See Also
Reference
ClientApplicationWebPartBase Class