Microsoft.Xades.SignatureProductionPlace.HasChanged C# (CSharp) Method

HasChanged() public method

Check to see if something has changed in this instance and needs to be serialized
public HasChanged ( ) : bool
return bool
		public bool HasChanged()
		{
			bool retVal = false;

            if (!String.IsNullOrEmpty(this.city))
			{
				retVal = true;
			}

			if (!String.IsNullOrEmpty(this.stateOrProvince))
			{
				retVal = true;
			}

			if (!String.IsNullOrEmpty(this.postalCode))
			{
				retVal = true;
			}

			if (!String.IsNullOrEmpty(this.countryName))
			{
				retVal = true;
			}

			return retVal;
		}