OSDN Git Service

コールバック関数のコメント追加
authorsyo68k <syo68k@users.sourceforge.jp>
Thu, 2 Sep 2010 15:17:14 +0000 (15:17 +0000)
committerKimura Youichi <kim.upsilon@bucyou.net>
Sat, 18 Feb 2012 14:15:09 +0000 (23:15 +0900)
git-svn-id: http://svn.sourceforge.jp/svnroot/tween/trunk@802 e39ad16e-3079-482e-bb30-4b4d378143b6

Tween/Connection/IHttpConnection.vb

index 9951b82..1ae8571 100644 (file)
@@ -21,5 +21,12 @@ Public Interface IHttpConnection
     Function Authenticate(ByVal url As Uri, ByVal username As String, ByVal password As String) As HttpStatusCode
 
     ReadOnly Property AuthUsername() As String
+    ''' <summary>
+    ''' APIメソッドの処理が終了し呼び出し元へ戻る直前に呼ばれるデリゲート
+    ''' </summary>
+    ''' <param name="sender">メソッド名</param>
+    ''' <param name="code">APIメソッドの返したHTTPステータスコード</param>
+    ''' <param name="content">APIメソッドの処理結果</param>
+    ''' <remarks>contentはNothingになることがあるのでチェックを必ず行うこと</remarks>
     Delegate Sub CallbackDelegate(ByVal sender As Object, ByRef code As HttpStatusCode, ByRef content As String)
 End Interface