WebPart.CanRunAt method
SharePoint 2013
NOTE: This API is now obsolete.
Returns a value that indicates where the implementation of a connection interface can run.
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
[ObsoleteAttribute("Use ConnectionProvider or ConnectionConsumer attribute to create ConnectionPoint instead.")] public virtual ConnectionRunAt CanRunAt()
Return value
Type: Microsoft.SharePoint.WebPartPages.Communication.ConnectionRunAtA Microsoft.SharePoint.WebPartPages.Communication.ConnectionRunAt enumeration value.
When developing a connectable Web Part, you must override the CanRunAt method to return the appropriate value for the implementation of a connection interface. The CanRunAt method should return a ConnectionRunAt enumeration that indicates whether implementation for the connection interface can run on the server, the client, both, or not at all (ConnectionRunAt.None). The default behavior of this method is to throw an exception that returns Strings.CommunicationMethodNotImplementedError. This method is called before the inherited System.Web.UI.Control class's PreRender event and after the Load event.