Exemple #1
0
 /// <summary>
 /// Subscribes to changes to a file.
 /// </summary>
 /// <param name="fileId">The ID of the file to watch for.</param>
 /// <param name="channel">The body of the request.</param>
 public static WatchRequest Watch (string fileId, Data.Channel channel)
 {
     return new WatchRequest(fileId, channel);
 }
Exemple #2
0
 /// <summary>
 /// Subscribes to changes for a user.
 /// </summary>
 public static WatchRequest Watch(string pageToken, Data.Channel channel)
 {
     return(new WatchRequest(pageToken, channel));
 }