HasChanged() public method

Check to see if something has changed in this instance and needs to be serialized
public HasChanged ( ) : bool
return bool
 /// <summary>
 /// Check to see if something has changed in this instance and needs to be serialized
 /// </summary>
 /// <returns>Flag indicating if a member needs serialization</returns>
 public bool HasChanged()
 {
     return((claimedRoles != null && claimedRoles.HasChanged()) || (certifiedRoles != null && certifiedRoles.HasChanged()));
 }