コード例 #1
0
ファイル: asyncservice.cs プロジェクト: Zelxin/RPiKeg
 private AsyncSendData(AsyncDataHandler handler, Uri uriToUse, AtomEntry entry, AtomFeed feed,
     SendOrPostCallback callback, object userData, bool parseFeed)
     : base(uriToUse, null, userData, callback, parseFeed) {
     this.DataHandler = handler;
     this.entry = entry;
     this.Feed = feed;
 }
コード例 #2
0
 private AsyncSendData(AsyncDataHandler handler, Uri uriToUse, AtomEntry entry, AtomFeed feed, SendOrPostCallback callback, object userData, bool parseFeed)
     : base(uriToUse, null, userData, callback, parseFeed)
 {
     this.DataHandler = handler;
     this.entry       = entry;
     this.Feed        = feed;
 }
コード例 #3
0
ファイル: asyncservice.cs プロジェクト: Zelxin/RPiKeg
 public AsyncSendData(AsyncDataHandler handler, Uri uriToUse, Stream stream, GDataRequestType type,
     string contentType, string slugHeader, SendOrPostCallback callback, object userData, bool parseFeed)
     : this(handler, uriToUse, null, null, callback, userData, parseFeed) {
     this.DataStream = stream;
     this.type = type;
     this.contentType = contentType;
     this.slugHeader = slugHeader;
 }
コード例 #4
0
 public AsyncSendData(AsyncDataHandler handler, Uri uriToUse, Stream stream, GDataRequestType type,
                      string contentType, string slugHeader, SendOrPostCallback callback, object userData, bool parseFeed)
     : this(handler, uriToUse, null, null, callback, userData, parseFeed)
 {
     this.DataStream  = stream;
     this.type        = type;
     this.contentType = contentType;
     this.slugHeader  = slugHeader;
 }
コード例 #5
0
ファイル: asyncservice.cs プロジェクト: Zelxin/RPiKeg
 public AsyncSendData(AsyncDataHandler handler, Uri uriToUse, AtomFeed feed, SendOrPostCallback callback, object userData)
     : this(handler, uriToUse, null, feed, callback, userData, false) {
 }
コード例 #6
0
ファイル: asyncservice.cs プロジェクト: Zelxin/RPiKeg
 public AsyncSendData(AsyncDataHandler handler, AtomEntry entry, SendOrPostCallback callback, object userData)
     : this(handler, null, entry, null, callback, userData, false) {
 }
コード例 #7
0
 public AsyncSendData(AsyncDataHandler handler, Uri uriToUse, AtomFeed feed, SendOrPostCallback callback, object userData)
     : this(handler, uriToUse, null, feed, callback, userData, false)
 {
 }
コード例 #8
0
 public AsyncSendData(AsyncDataHandler handler, AtomEntry entry, SendOrPostCallback callback, object userData)
     : this(handler, null, entry, null, callback, userData, false)
 {
 }