Microsoft.Xades.ObjectReference.HasChanged C# (CSharp) 메소드

HasChanged() 공개 메소드

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

			if (this.objectReferenceUri != null && this.objectReferenceUri != "")
			{
				retVal = true;
			}

			return retVal;
		}