コード例 #1
0
 /// <summary>
 /// Retrieves a particular principal as being the "group" of the item. This property is commonly
 /// found on repositories that implement the Unix privileges model.
 /// </summary>
 /// <param name="value">Identifies whether to search by owner or group.</param>
 public Task SetGroupAsync(IPrincipalAsync value)
 {
     throw new DavException("Group cannot be set", DavStatus.FORBIDDEN);
 }
コード例 #2
0
 public Task SetGroupAsync(IPrincipalAsync value)
 {
     throw new NotImplementedException();
 }
コード例 #3
0
 public Task SetOwnerAsync(IPrincipalAsync value)
 {
     throw new DavException("Not implemented.", DavStatus.NOT_IMPLEMENTED);
 }