Пример #1
0
 /// <summary>
 /// Deletes an existing managed account.
 /// </summary>
 /// <param name="entry">the entry to delete</param>
 public void DeleteManagedAccount(ManagedAccountsEntry entry)
 {
     base.Delete(entry);
 }
Пример #2
0
 /// <summary>
 /// Updates an existing managed accounts entry with the new values
 /// </summary>
 /// <param name="entry">the entry to insert</param>
 /// <returns>the updated entry returned by the server</returns>
 public ManagedAccountsEntry UpdateManagedAccount(ManagedAccountsEntry entry)
 {
     return(base.Update(entry));
 }
Пример #3
0
 /// <summary>
 /// Inserts a new managed account entry.
 /// </summary>
 /// <param name="entry">the entry to insert</param>
 /// <param name="accountId">The account ID of the parent account.</param>
 /// <returns>the inserted entry</returns>
 public ManagedAccountsEntry InsertManagedAccount(ManagedAccountsEntry entry, string accountId)
 {
     return(base.Insert(CreateUri(accountId, "managedaccounts", null, null), entry));
 }
Пример #4
0
 /// <summary>
 /// Inserts a new managed accounts entry into the specified feed.
 /// </summary>
 /// <param name="feed">the feed into which this entry should be inserted</param>
 /// <param name="entry">the entry to insert</param>
 /// <returns>the inserted entry</returns>
 public ManagedAccountsEntry InsertManagedAccount(ManagedAccountsFeed feed, ManagedAccountsEntry entry)
 {
     return(base.Insert(feed, entry));
 }
Пример #5
0
 /// <summary>
 /// Inserts a new managed account entry.
 /// </summary>
 /// <param name="entry">the entry to insert</param>
 /// <returns>the inserted entry</returns>
 public ManagedAccountsEntry InsertManagedAccount(ManagedAccountsEntry entry)
 {
     return(base.Insert(CreateUri("managedaccounts", null), entry) as ManagedAccountsEntry);
 }