Ask Learn
Preview
Please sign in to use this experience.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Returns whether the Connections property has changed from its default value.
Namespace: Microsoft.SharePoint.WebPartPages
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
'Declaration
Public Function ShouldSerializeConnections As Boolean
'Usage
Dim instance As WebPart
Dim returnValue As Boolean
returnValue = instance.ShouldSerializeConnections()
public bool ShouldSerializeConnections()
Type: System.Boolean
true if the property value has changed from the default value; otherwise, false.
The ShouldSerializeConnections method is provided because the Connections property does not have a simple default value. This method indicates whether the property has changed from its default value. You typically invoke this method if you are developing a designer for the WebPart class, or are creating your own Web Part or tool part, so that you can avoid unnecessarily persisting default values.
If you override this function, your function should return true if the corresponding property has changed from its default or if the SerializeAll property is true. For example:
public override bool ShouldSerializeConnections()
{
return SerializeAll || defaultConnections != _connections;
}
Please sign in to use this experience.
Sign in