snapshot() 공개 정적인 메소드

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
리턴 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));
 }