Microsoft.Xades.CompleteRevocationRefs.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.id))
			{
				retVal = true;
			}
			if (this.crlRefs != null && this.crlRefs.HasChanged())
			{
				retVal = true;
			}
			if (this.ocspRefs != null && this.ocspRefs.HasChanged())
			{
				retVal = true;
			}
			if (this.otherRefs != null && this.otherRefs.HasChanged())
			{
				retVal = true;
			}

			return retVal;
		}