C# 클래스 PRI.ProductivityExtensions.SqlCommandExtensions.SqlCommandable

Class that contains extension methods that extend SqlCommand
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
BeginExecuteNonQuery ( this sqlcommand, AsyncCallback callback ) : IAsyncResult

Extends BeginExecuteNonQuery so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteNonQuery(callback);

BeginExecuteReader ( this sqlcommand, AsyncCallback callback ) : IAsyncResult

Extends BeginExecuteReader so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteReader(callback);

BeginExecuteReader ( this sqlcommand, AsyncCallback callback, System behavior ) : IAsyncResult

Extends BeginExecuteReader so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteReader(callback, behavior);

BeginExecuteXmlReader ( this sqlcommand, AsyncCallback callback ) : IAsyncResult

Extends BeginExecuteXmlReader so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteXmlReader(callback);

메소드 상세

BeginExecuteNonQuery() 공개 정적인 메소드

Extends BeginExecuteNonQuery so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteNonQuery(callback);
public static BeginExecuteNonQuery ( this sqlcommand, AsyncCallback callback ) : IAsyncResult
sqlcommand this
callback AsyncCallback
리턴 IAsyncResult

BeginExecuteReader() 공개 정적인 메소드

Extends BeginExecuteReader so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteReader(callback);
public static BeginExecuteReader ( this sqlcommand, AsyncCallback callback ) : IAsyncResult
sqlcommand this
callback AsyncCallback
리턴 IAsyncResult

BeginExecuteReader() 공개 정적인 메소드

Extends BeginExecuteReader so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteReader(callback, behavior);
public static BeginExecuteReader ( this sqlcommand, AsyncCallback callback, System behavior ) : IAsyncResult
sqlcommand this
callback AsyncCallback
behavior System
리턴 IAsyncResult

BeginExecuteXmlReader() 공개 정적인 메소드

Extends BeginExecuteXmlReader so that when a state object is not needed, null does not need to be passed. sqlcommand.BeginExecuteXmlReader(callback);
public static BeginExecuteXmlReader ( this sqlcommand, AsyncCallback callback ) : IAsyncResult
sqlcommand this
callback AsyncCallback
리턴 IAsyncResult