snapshot() public static method

public static snapshot ( Credentials credentials, string streamId, string fileName, string format, long time, string notifyUrl ) : pili_sdk_csharp.pili.Stream.SnapshotResponse
credentials Credentials
streamId string
fileName string
format string
time long
notifyUrl string
return pili_sdk_csharp.pili.Stream.SnapshotResponse
示例#1
0
 public virtual SnapshotResponse snapshot(string name, string format)
 {
     return(API.snapshot(mCredentials, this.id, name, format, 0, null));
 }
示例#2
0
 public virtual SnapshotResponse snapshot(string name, string format, long time, string notifyUrl)
 {
     return(API.snapshot(mCredentials, this.id, name, format, time, notifyUrl));
 }
示例#3
0
 public virtual JObject snapshot(string stream, string fileName, int time, string format, int deleteAfterDays)
 {
     return(API.snapshot(mCredentials, mHubName, stream, fileName, time, format, deleteAfterDays));
 }