/// <summary> /// Returns true if CloudObject instances are equal /// </summary> /// <param name="other">Instance of CloudObject to be compared</param> /// <returns>Boolean</returns> public bool Equals(CloudObject other) { // credit: http://stackoverflow.com/a/10454552/677735 if (other == null) { return(false); } return(false); }
/// <summary> /// Initializes a new instance of the <see cref="CloudObjectSaveRequest" /> class. /// Initializes a new instance of the <see cref="CloudObjectSaveRequest" />class. /// </summary> /// <param name="Key">Key.</param> /// <param name="Document">Document.</param> public CloudObjectSaveRequest(string Key = null, CloudObject Document = null) { this.Key = Key; this.Document = Document; }