3029 references to AsyncCallback
mscorlib (71)
system\io\bufferedstream.cs (4)
566public override IAsyncResult BeginRead(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) { 628private IAsyncResult BeginReadFromUnderlyingStream(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state, 995public override IAsyncResult BeginWrite(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state) { 1053private IAsyncResult BeginWriteToUnderlyingStream(Byte[] buffer, Int32 offset, Int32 count, AsyncCallback callback, Object state,
system\io\filestream.cs (15)
85private AsyncCallback _userCallback; 132AsyncCallback userCallback, 166internal static FileStreamAsyncResult CreateBufferedReadResult(int numBufferedBytes, AsyncCallback userCallback, Object userStateObject, bool isWrite) 175private FileStreamAsyncResult(int numBufferedBytes, AsyncCallback userCallback, Object userStateObject, bool isWrite) 363AsyncCallback userCallback = asyncResult._userCallback; 425private static AsyncCallback s_endReadTask; 426private static AsyncCallback s_endWriteTask; 1870public override IAsyncResult BeginRead(byte[] array, int offset, int numBytes, AsyncCallback userCallback, Object stateObject) 1897private FileStreamAsyncResult BeginReadAsync(byte[] array, int offset, int numBytes, AsyncCallback userCallback, Object stateObject) 2010unsafe private FileStreamAsyncResult BeginReadCore(byte[] bytes, int offset, int numBytes, AsyncCallback userCallback, Object stateObject, int numBufferedBytesRead) 2182public override IAsyncResult BeginWrite(byte[] array, int offset, int numBytes, AsyncCallback userCallback, Object stateObject) 2209private FileStreamAsyncResult BeginWriteAsync(byte[] array, int offset, int numBytes, AsyncCallback userCallback, Object stateObject) 2270unsafe private FileStreamAsyncResult BeginWriteCore(byte[] bytes, int offset, int numBytes, AsyncCallback userCallback, Object stateObject) 2634var endReadTask = s_endReadTask; 2686var endWriteTask = s_endWriteTask;
system\io\isolatedstorage\isolatedstoragefilestream.cs (2)
695int numBytes, AsyncCallback userCallback, Object stateObject) { 713int numBytes, AsyncCallback userCallback, Object stateObject) {
system\io\stream.cs (14)
298public virtual IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 305internal IAsyncResult BeginReadInternal(byte[] buffer, int offset, int count, AsyncCallback callback, Object state, bool serializeAsynchronously) 445public virtual IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 452internal IAsyncResult BeginWriteInternal(byte[] buffer, int offset, int count, AsyncCallback callback, Object state, bool serializeAsynchronously) 619private AsyncCallback _callback; 633Stream stream, byte[] buffer, int offset, int count, AsyncCallback callback) : 668var callback = rwc._callback; 685var callback = _callback; 793internal IAsyncResult BlockingBeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 826internal IAsyncResult BlockingBeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 906public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 923public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 1226public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 1284public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
system\runtime\remoting\asyncresult.cs (1)
155private AsyncCallback _acbd;
system\runtime\remoting\message.cs (1)
115public extern void GetAsyncBeginInfo(out AsyncCallback acbd,
system\runtime\remoting\remotingservices.cs (1)
2081beginParameters.Add(typeof(AsyncCallback));
system\threading\Tasks\BeginEndAwaitableAdapter.cs (1)
68public readonly static AsyncCallback Callback = (asyncResult) => {
system\threading\Tasks\FutureFactory.cs (14)
775Func<AsyncCallback, object, IAsyncResult> beginMethod, 804Func<AsyncCallback, object, IAsyncResult> beginMethod, 812internal static Task<TResult> FromAsyncImpl(Func<AsyncCallback, object, IAsyncResult> beginMethod, 906Func<TArg1, AsyncCallback, object, IAsyncResult> beginMethod, 940Func<TArg1, AsyncCallback, object, IAsyncResult> beginMethod, 949internal static Task<TResult> FromAsyncImpl<TArg1>(Func<TArg1, AsyncCallback, object, IAsyncResult> beginMethod, 1047Func<TArg1, TArg2, AsyncCallback, object, IAsyncResult> beginMethod, 1085Func<TArg1, TArg2, AsyncCallback, object, IAsyncResult> beginMethod, 1094internal static Task<TResult> FromAsyncImpl<TArg1, TArg2>(Func<TArg1, TArg2, AsyncCallback, object, IAsyncResult> beginMethod, 1195Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod, 1237Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod, 1246internal static Task<TResult> FromAsyncImpl<TArg1, TArg2, TArg3>(Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod, 1331Func<TInstance, TArgs, AsyncCallback, object, IAsyncResult> beginMethod, 1367internal readonly static AsyncCallback s_completeFromAsyncResult = CompleteFromAsyncResult;
system\threading\Tasks\TaskFactory.cs (16)
957Func<AsyncCallback, object, IAsyncResult> beginMethod, 987Func<AsyncCallback, object, IAsyncResult> beginMethod, 1016Func<TArg1, AsyncCallback, object, IAsyncResult> beginMethod, 1052Func<TArg1, AsyncCallback, object, IAsyncResult> beginMethod, 1086Func<TArg1, TArg2, AsyncCallback, object, IAsyncResult> beginMethod, 1125Func<TArg1, TArg2, AsyncCallback, object, IAsyncResult> beginMethod, 1163Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod, 1206Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod, 1327Func<AsyncCallback, object, IAsyncResult> beginMethod, 1359Func<AsyncCallback, object, IAsyncResult> beginMethod, 1390Func<TArg1, AsyncCallback, object, IAsyncResult> beginMethod, 1425public Task<TResult> FromAsync<TArg1, TResult>(Func<TArg1, AsyncCallback, object, IAsyncResult> beginMethod, 1459public Task<TResult> FromAsync<TArg1, TArg2, TResult>(Func<TArg1, TArg2, AsyncCallback, object, IAsyncResult> beginMethod, 1499Func<TArg1, TArg2, AsyncCallback, object, IAsyncResult> beginMethod, 1538Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod, 1582Func<TArg1, TArg2, TArg3, AsyncCallback, object, IAsyncResult> beginMethod,
system\threading\Tasks\TaskToApm.cs (2)
45public static IAsyncResult Begin(Task task, AsyncCallback callback, object state) 125private static void InvokeCallbackWhenTaskCompletes(Task antecedent, AsyncCallback callback, IAsyncResult asyncResult)
PresentationCore (2)
Core\CSharp\System\Windows\Media\Imaging\BitmapDownload.cs (2)
536internal static AsyncCallback _readCallback; 539internal static AsyncCallback _responseCallback;
PresentationFramework (6)
src\Framework\MS\Internal\AppModel\BamlStream.cs (2)
133AsyncCallback callback, 147AsyncCallback callback,
src\Framework\MS\Internal\Navigation\BindStream.cs (2)
168AsyncCallback callback, 188AsyncCallback callback,
src\Framework\System\Windows\Documents\PageContentAsyncResult.cs (2)
57internal PageContentAsyncResult(AsyncCallback callback, object state, Dispatcher dispatcher, Uri baseUri, Uri source, FixedPage child) 270private AsyncCallback _callback;
SMSvcHost (4)
System\ServiceModel\Activation\MessageQueue.cs (1)
24AsyncCallback dispatchSessionCompletedCallback;
System\ServiceModel\Activation\WorkerProcess.cs (3)
92internal IAsyncResult BeginDispatchSession(ListenerSessionConnection session, AsyncCallback callback, object state) 394static AsyncCallback dispatchSessionCallback = Fx.ThunkCallback(new AsyncCallback(DispatchSessionCompletedCallback)); 396public DispatchSessionAsyncResult(ListenerSessionConnection session, AsyncCallback callback, object state)
System (283)
net\System\Net\_ChunkParser.cs (1)
119int userBufferCount, AsyncCallback callback, object state)
net\System\Net\_CommandStream.cs (2)
31private static readonly AsyncCallback m_WriteCallbackDelegate = new AsyncCallback(WriteCallback); 32private static readonly AsyncCallback m_ReadCallbackDelegate = new AsyncCallback(ReadCallback);
net\System\Net\_Connection.cs (2)
299private static readonly AsyncCallback m_ReadCallback = new AsyncCallback(ReadCallbackWrapper); 300private static readonly AsyncCallback m_TunnelCallback = new AsyncCallback(TunnelThroughProxyWrapper);
net\System\Net\_ConnectStream.cs (9)
90private readonly AsyncCallback m_ReadCallbackDelegate; 91private readonly AsyncCallback m_WriteCallbackDelegate; 92private static readonly AsyncCallback m_WriteHeadersCallback = new AsyncCallback(WriteHeadersCallback); 861public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, object state ) { 896private IAsyncResult InternalWrite(bool async, byte[] buffer, int offset, int size, AsyncCallback callback, object state ) { 1626public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, object state) { 1725private IAsyncResult BeginReadWithoutValidation(byte[] buffer, int offset, int size, AsyncCallback callback, object state) { 3165public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 3176public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
net\System\Net\_ContextAwareResult.cs (7)
29private AsyncCallback savedCallback; 32internal CallbackClosure(ExecutionContext context, AsyncCallback callback) 41internal bool IsCompatible(AsyncCallback callback) 54internal AsyncCallback AsyncCallback 97internal ContextAwareResult(object myObject, object myState, AsyncCallback myCallBack) : 107internal ContextAwareResult(bool captureIdentity, bool forceCaptureContext, object myObject, object myState, AsyncCallback myCallBack) : 111internal ContextAwareResult(bool captureIdentity, bool forceCaptureContext, bool threadSafeContextCopy, object myObject, object myState, AsyncCallback myCallBack) :
net\System\Net\_FtpControlStream.cs (3)
85private static readonly AsyncCallback m_AcceptCallbackDelegate = new AsyncCallback(AcceptCallback); 86private static readonly AsyncCallback m_ConnectCallbackDelegate = new AsyncCallback(ConnectCallback); 87private static readonly AsyncCallback m_SSLHandshakeCallback = new AsyncCallback(SSLHandshakeCallback);
net\System\Net\_FtpDataStream.cs (2)
237public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 275public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) {
net\System\Net\_LazyAsyncResult.cs (4)
61private AsyncCallback m_AsyncCallback; // Caller's callback method. 73internal LazyAsyncResult(object myObject, object myState, AsyncCallback myCallBack) { 88internal LazyAsyncResult(object myObject, object myState, AsyncCallback myCallBack, object result) 122protected AsyncCallback AsyncCallback
net\System\Net\_ListenerAsyncResult.cs (1)
26internal ListenerAsyncResult(object asyncObject, object userState, AsyncCallback callback) :
net\System\Net\_ListenerRequestStream.cs (5)
188public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, object state) { 327public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, object state) { 374internal HttpRequestStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback) : base(asyncObject, userState, callback) { 377internal HttpRequestStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback, uint dataAlreadyRead) : base(asyncObject, userState, callback) { 381internal HttpRequestStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback, byte[] buffer, int offset, uint size, uint dataAlreadyRead): base(asyncObject, userState, callback) {
net\System\Net\_ListenerResponseStream.cs (4)
119public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, object state) { 234public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, object state) { 508internal HttpResponseStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback) : base(asyncObject, userState, callback) { 512internal HttpResponseStreamAsyncResult(object asyncObject, object userState, AsyncCallback callback, byte[] buffer, int offset, int size, bool chunked, bool sentHeaders): base(asyncObject, userState, callback){
net\System\Net\_NestedMultipleAsyncResult.cs (1)
27internal NestedMultipleAsyncResult(Object asyncObject, Object asyncState, AsyncCallback asyncCallback, BufferOffsetSize[] buffers)
net\System\Net\_NestedSingleAsyncResult.cs (2)
30internal NestedSingleAsyncResult(Object asyncObject, Object asyncState, AsyncCallback asyncCallback, object result) : 34internal NestedSingleAsyncResult(Object asyncObject, Object asyncState, AsyncCallback asyncCallback, byte[] buffer, int offset, int size)
net\System\Net\_PooledStream.cs (5)
691public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 695internal virtual IAsyncResult UnsafeBeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) 716public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 721internal virtual IAsyncResult UnsafeBeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 742internal IAsyncResult BeginMultipleWrite(BufferOffsetSize[] buffers, AsyncCallback callback, object state) {
net\System\Net\_StreamFramer.cs (5)
51private readonly AsyncCallback m_ReadFrameCallback; 52private readonly AsyncCallback m_BeginWriteCallback; 186public IAsyncResult BeginReadMessage(AsyncCallback asyncCallback, object stateObject) { 378public IAsyncResult BeginWriteMessage(byte[] message, AsyncCallback asyncCallback, object stateObject) { 517AsyncCallback savedAsyncCallback,
net\System\Net\_TLSstream.cs (7)
26private static AsyncCallback _CompleteIOCallback = new AsyncCallback(CompleteIOCallback); 161public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback asyncCallback, object asyncState) { 189internal override IAsyncResult UnsafeBeginRead(byte[] buffer, int offset, int size, AsyncCallback asyncCallback, object asyncState) 269public override IAsyncResult BeginWrite( byte[] buffer, int offset, int size, AsyncCallback asyncCallback, object asyncState) { 296internal override IAsyncResult UnsafeBeginWrite( byte[] buffer, int offset, int size, AsyncCallback asyncCallback, object asyncState) { 372internal override IAsyncResult BeginMultipleWrite(BufferOffsetSize[] buffers, AsyncCallback callback, object state) { 398internal override IAsyncResult UnsafeBeginMultipleWrite(BufferOffsetSize[] buffers, AsyncCallback callback, object state) {
net\System\Net\Cache\_CacheStreams.cs (12)
61private AsyncCallback m_ReadCallback; //lazy initialized 112public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 160public InnerAsyncResult(object userState, AsyncCallback userCallback, byte[] buffer, int offset, int count) 214public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 370private AsyncCallback m_ReadCallback; // lazy initialized 428public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 515public InnerAsyncResult(object userState, AsyncCallback userCallback, byte[] buffer, int offset, int count) 667public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 938public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 954public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 1142public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 1170public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
net\System\Net\Cache\_SingleItemRequestCache.cs (4)
346public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 379public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) 501public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 516public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
net\System\Net\Cache\IERequestCache.cs (2)
666public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 875public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
net\System\Net\DNS.cs (10)
649internal ResolveAsyncResult(string hostName, object myObject, bool includeIPv6, object myState, AsyncCallback myCallBack) : 657internal ResolveAsyncResult(IPAddress address, object myObject, bool includeIPv6, object myState, AsyncCallback myCallBack) : 697private static IAsyncResult HostResolutionBeginHelper(string hostName, bool justReturnParsedIp, bool flowContext, bool includeIPv6, bool throwOnIPAny, AsyncCallback requestCallback, object state) 752private static IAsyncResult HostResolutionBeginHelper(IPAddress address, bool flowContext, bool includeIPv6, AsyncCallback requestCallback, object state) 824public static IAsyncResult BeginGetHostByName(string hostName, AsyncCallback requestCallback, object stateObject) { 948public static IAsyncResult BeginGetHostEntry(string hostNameOrAddress, AsyncCallback requestCallback, object stateObject) { 960public static IAsyncResult BeginGetHostEntry(IPAddress address, AsyncCallback requestCallback, object stateObject) { 981public static IAsyncResult BeginGetHostAddresses(string hostNameOrAddress, AsyncCallback requestCallback, object state) { 1001internal static IAsyncResult UnsafeBeginGetHostAddresses(string hostName, AsyncCallback requestCallback, object state) 1017public static IAsyncResult BeginResolve(string hostName, AsyncCallback requestCallback, object stateObject)
net\System\Net\filewebrequest.cs (4)
214public override IAsyncResult BeginGetRequestStream(AsyncCallback callback, object state) 259public override IAsyncResult BeginGetResponse(AsyncCallback callback, object state) 626public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 647public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) {
net\System\Net\FtpWebRequest.cs (2)
712public override IAsyncResult BeginGetResponse(AsyncCallback callback, object state) 951public override IAsyncResult BeginGetRequestStream(AsyncCallback callback, object state) {
net\System\Net\HttpListener.cs (1)
1249public IAsyncResult BeginGetContext(AsyncCallback callback, object state) {
net\System\Net\HttpListenerRequest.cs (3)
60internal ListenerClientCertAsyncResult(object asyncObject, object userState, AsyncCallback callback, uint size) : base(asyncObject, userState, callback) { 616public IAsyncResult BeginGetClientCertificate(AsyncCallback requestCallback, object state) { 784private ListenerClientCertAsyncResult AsyncProcessClientCertificate(AsyncCallback requestCallback, object state) {
net\System\Net\HttpWebRequest.cs (2)
1345public override IAsyncResult BeginGetRequestStream(AsyncCallback callback, object state) { 1908public override IAsyncResult BeginGetResponse(AsyncCallback callback, object state) {
net\System\Net\HttpWebResponse.cs (2)
745public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 851public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) {
net\System\Net\mail\Base64Stream.cs (6)
102public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 118public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 428static AsyncCallback onRead = new AsyncCallback(OnRead); 430internal ReadAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null,state,callback) 506static AsyncCallback onWrite = new AsyncCallback(OnWrite); 509internal WriteAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
net\System\Net\mail\BaseWriter.cs (2)
16private static AsyncCallback onWrite = new AsyncCallback(OnWrite); 129internal IAsyncResult BeginGetContentStream(AsyncCallback callback, object state)
net\System\Net\mail\BufferedReadStream.cs (3)
46public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 219static AsyncCallback onRead = new AsyncCallback(OnRead); 221internal ReadAsyncResult(BufferedReadStream parent, AsyncCallback callback, object state) : base(null,state,callback)
net\System\Net\mail\DelegatedStream.cs (2)
92public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 108public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
net\System\Net\mail\EightBitStream.cs (1)
68public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
net\System\Net\mail\MailMessage.cs (1)
406AsyncCallback callback, object state) {
net\System\Net\mail\Message.cs (1)
268AsyncCallback callback, object state) {
net\System\Net\mail\MimeBasePart.cs (2)
221internal virtual IAsyncResult BeginSend(BaseWriter writer, AsyncCallback callback, 250internal MimePartAsyncResult(MimeBasePart part, object state, AsyncCallback callback):base(part,state,callback) {
net\System\Net\mail\MimeMultiPart.cs (2)
13AsyncCallback mimePartSentCallback; 168internal override IAsyncResult BeginSend(BaseWriter writer, AsyncCallback callback, bool allowUnicode,
net\System\Net\mail\MimePart.cs (3)
18AsyncCallback readCallback; 19AsyncCallback writeCallback; 281internal override IAsyncResult BeginSend(BaseWriter writer, AsyncCallback callback, bool allowUnicode,
net\System\Net\mail\MimeWriter.cs (1)
45internal IAsyncResult BeginClose(AsyncCallback callback, object state)
net\System\Net\mail\MultiAsyncResult.cs (1)
10internal MultiAsyncResult(object context, AsyncCallback callback, object state) : base(context,state,callback)
net\System\Net\mail\QEncodedStream.cs (3)
82public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 362static AsyncCallback onWrite = new AsyncCallback(OnWrite); 365internal WriteAsyncResult(QEncodedStream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state)
net\System\Net\mail\QuotedPrintableStream.cs (3)
105public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 395static AsyncCallback onWrite = new AsyncCallback(OnWrite); 398internal WriteAsyncResult(QuotedPrintableStream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
net\System\Net\mail\SmtpClient.cs (1)
56static AsyncCallback _ContextSafeCompleteCallback = new AsyncCallback(ContextSafeCompleteCallback);
net\System\Net\mail\SmtpCommands.cs (14)
13static AsyncCallback onReadLine = new AsyncCallback(OnReadLine); 14static AsyncCallback onWrite = new AsyncCallback(OnWrite); 16internal static IAsyncResult BeginSend(SmtpConnection conn, AsyncCallback callback, object state) 106static AsyncCallback onReadLines = new AsyncCallback(OnReadLines); 107static AsyncCallback onWrite = new AsyncCallback(OnWrite); 109internal static IAsyncResult BeginSend(SmtpConnection conn, AsyncCallback callback, object state) 188internal static IAsyncResult BeginSend(SmtpConnection conn, string type, string message, AsyncCallback callback, object state) 194internal static IAsyncResult BeginSend(SmtpConnection conn, string message, AsyncCallback callback, object state) 245internal static IAsyncResult BeginSend(SmtpConnection conn, AsyncCallback callback, object state) 360internal static IAsyncResult BeginSend(SmtpConnection conn, string domain, AsyncCallback callback, object state) 414internal static IAsyncResult BeginSend(SmtpConnection conn, string domain, AsyncCallback callback, object state) 469internal static IAsyncResult BeginSend(SmtpConnection conn, AsyncCallback callback, object state) 526bool allowUnicode, AsyncCallback callback, object state) 589internal static IAsyncResult BeginSend(SmtpConnection conn, string to, AsyncCallback callback, object state)
net\System\Net\mail\smtpconnection.cs (8)
164internal IAsyncResult BeginGetConnection(ServicePoint servicePoint, ContextAwareResult outerResult, AsyncCallback callback, object state) 180internal IAsyncResult BeginFlush(AsyncCallback callback, object state) 580static AsyncCallback handshakeCallback = new AsyncCallback(HandshakeCallback); 581static AsyncCallback sendEHelloCallback = new AsyncCallback(SendEHelloCallback); 582static AsyncCallback sendHelloCallback = new AsyncCallback(SendHelloCallback); 583static AsyncCallback authenticateCallback = new AsyncCallback(AuthenticateCallback); 584static AsyncCallback authenticateContinueCallback = new AsyncCallback(AuthenticateContinueCallback); 590internal ConnectAndHandshakeAsyncResult(SmtpConnection connection, string host, int port, ContextAwareResult outerResult, AsyncCallback callback, object state) :
net\System\Net\mail\SmtpReplyReader.cs (2)
17internal IAsyncResult BeginReadLines(AsyncCallback callback, object state) 22internal IAsyncResult BeginReadLine(AsyncCallback callback, object state)
net\System\Net\mail\SmtpReplyReaderFactory.cs (5)
54internal IAsyncResult BeginReadLines(SmtpReplyReader caller, AsyncCallback callback, object state) 61internal IAsyncResult BeginReadLine(SmtpReplyReader caller, AsyncCallback callback, object state) 373static AsyncCallback readCallback = new AsyncCallback(ReadCallback); 378internal ReadLinesAsyncResult(SmtpReplyReaderFactory parent, AsyncCallback callback, object state) : base(null, state, callback) 383internal ReadLinesAsyncResult(SmtpReplyReaderFactory parent, AsyncCallback callback, object state, bool oneLine) : base(null, state, callback)
net\System\Net\mail\SmtpTransport.cs (6)
218internal IAsyncResult BeginGetConnection(ServicePoint servicePoint, ContextAwareResult outerResult, AsyncCallback callback, object state) 257string deliveryNotify, bool allowUnicode, AsyncCallback callback, object state) 364static AsyncCallback sendMailFromCompleted = new AsyncCallback(SendMailFromCompleted); 365static AsyncCallback sendToCollectionCompleted = new AsyncCallback(SendToCollectionCompleted); 366static AsyncCallback sendDataCompleted = new AsyncCallback(SendDataCompleted); 375bool allowUnicode, string deliveryNotify, AsyncCallback callback, object state)
net\System\Net\NetworkInformation\IPGlobalProperties.cs (1)
80public virtual IAsyncResult BeginGetUnicastAddresses(AsyncCallback callback, object state)
net\System\Net\NetworkInformation\SystemIPGlobalProperties.cs (1)
398public override IAsyncResult BeginGetUnicastAddresses(AsyncCallback callback, object state){
net\System\Net\SecureProtocols\_FixedSizeReader.cs (1)
31private static readonly AsyncCallback _ReadCallback = new AsyncCallback(ReadCallback);
net\System\Net\SecureProtocols\_HelperAsyncResults.cs (3)
42public BufferAsyncResult(object asyncObject, BufferOffsetSize[] buffers, object asyncState, AsyncCallback asyncCallback) 49public BufferAsyncResult(object asyncObject, byte[] buffer, int offset, int count, object asyncState, AsyncCallback asyncCallback) 54public BufferAsyncResult(object asyncObject, byte[] buffer, int offset, int count, bool isWrite, object asyncState, AsyncCallback asyncCallback)
net\System\Net\SecureProtocols\_NegoState.cs (2)
42private static readonly AsyncCallback _ReadCallback = new AsyncCallback(ReadCallback); 43private static readonly AsyncCallback _WriteCallback = new AsyncCallback(WriteCallback);
net\System\Net\SecureProtocols\_NegoStream.cs (1)
34private static AsyncCallback _WriteCallback = new AsyncCallback(WriteCallback);
net\System\Net\SecureProtocols\_SslState.cs (2)
42static AsyncCallback _WriteCallback = new AsyncCallback(WriteCallback); 1331internal IAsyncResult BeginShutdown(AsyncCallback asyncCallback, object asyncState)
net\System\Net\SecureProtocols\_SslStream.cs (5)
35private static AsyncCallback _WriteCallback = new AsyncCallback(WriteCallback); 36private static AsyncCallback _MulitpleWriteCallback = new AsyncCallback(MulitpleWriteCallback); 127internal IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState) 169internal IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState) 179internal IAsyncResult BeginWrite(BufferOffsetSize[] buffers, AsyncCallback asyncCallback, object asyncState)
net\System\Net\SecureProtocols\NegotiateStream.cs (11)
106public virtual IAsyncResult BeginAuthenticateAsClient(AsyncCallback asyncCallback, object asyncState) 114public virtual IAsyncResult BeginAuthenticateAsClient(NetworkCredential credential, string targetName, AsyncCallback asyncCallback, object asyncState) 122public virtual IAsyncResult BeginAuthenticateAsClient(NetworkCredential credential, ChannelBinding binding, string targetName, AsyncCallback asyncCallback, object asyncState) 134AsyncCallback asyncCallback, 148AsyncCallback asyncCallback, 213public virtual IAsyncResult BeginAuthenticateAsServer(AsyncCallback asyncCallback, object asyncState) 219public virtual IAsyncResult BeginAuthenticateAsServer(ExtendedProtectionPolicy policy, AsyncCallback asyncCallback, object asyncState) 228AsyncCallback asyncCallback, 239AsyncCallback asyncCallback, 569public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState) 635public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState)
net\System\Net\SecureProtocols\SslStream.cs (9)
144public virtual IAsyncResult BeginAuthenticateAsClient(string targetHost, AsyncCallback asyncCallback, object asyncState) 152bool checkCertificateRevocation, AsyncCallback asyncCallback, 163AsyncCallback asyncCallback, object asyncState) 203public virtual IAsyncResult BeginAuthenticateAsServer(X509Certificate serverCertificate, AsyncCallback asyncCallback, object asyncState) 214bool checkCertificateRevocation, AsyncCallback asyncCallback, 224AsyncCallback asyncCallback, 239internal virtual IAsyncResult BeginShutdown(AsyncCallback asyncCallback, object asyncState) 516public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState) { 528public override IAsyncResult BeginWrite( byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState) {
net\System\Net\ServicePoint.cs (1)
61private static readonly AsyncCallback m_ConnectCallbackDelegate = new AsyncCallback(ConnectSocketCallback);
net\System\Net\Sockets\_AcceptOverlappedAsyncResult.cs (1)
35internal AcceptOverlappedAsyncResult(Socket listenSocket, Object asyncState, AsyncCallback asyncCallback) :
net\System\Net\Sockets\_BaseOverlappedAsyncResult.cs (1)
49internal BaseOverlappedAsyncResult(Socket socket, Object asyncState, AsyncCallback asyncCallback)
net\System\Net\Sockets\_ConnectOverlappedAsyncResult.cs (1)
21internal ConnectOverlappedAsyncResult(Socket socket, EndPoint endPoint, Object asyncState, AsyncCallback asyncCallback):
net\System\Net\Sockets\_DisconnectOverlappedAsyncResult.cs (1)
20internal DisconnectOverlappedAsyncResult(Socket socket, Object asyncState, AsyncCallback asyncCallback):
net\System\Net\Sockets\_OverlappedAsyncResult.cs (1)
41internal OverlappedAsyncResult(Socket socket, Object asyncState, AsyncCallback asyncCallback) :
net\System\Net\Sockets\_ReceiveMessageOverlappedAsyncResult.cs (1)
49internal ReceiveMessageOverlappedAsyncResult(Socket socket, Object asyncState, AsyncCallback asyncCallback) :
net\System\Net\Sockets\_TransmitFileOverlappedAsyncResult.cs (1)
34internal TransmitFileOverlappedAsyncResult(Socket socket, Object asyncState, AsyncCallback asyncCallback)
net\System\Net\Sockets\NetworkStream.cs (6)
716public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 773internal virtual IAsyncResult UnsafeBeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) 901public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 963internal virtual IAsyncResult UnsafeBeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, Object state) { 1111AsyncCallback callback, 1165AsyncCallback callback,
net\System\Net\Sockets\Socket.cs (31)
2676AsyncCallback callback, 2722public IAsyncResult BeginConnect(EndPoint remoteEP, AsyncCallback callback, object state) 2840internal IAsyncResult UnsafeBeginConnect(EndPoint remoteEP, AsyncCallback callback, object state) 3078public IAsyncResult BeginConnect(string host, int port, AsyncCallback requestCallback, object state){ 3120public IAsyncResult BeginConnect(IPAddress address, int port, AsyncCallback requestCallback, object state){ 3144public IAsyncResult BeginConnect(IPAddress[] addresses, int port, AsyncCallback requestCallback, object state) 3202public IAsyncResult BeginDisconnect(bool reuseSocket, AsyncCallback callback, object state) 3425public IAsyncResult BeginSend(byte[] buffer, int offset, int size, SocketFlags socketFlags, AsyncCallback callback, object state) 3436public IAsyncResult BeginSend(byte[] buffer, int offset, int size, SocketFlags socketFlags, out SocketError errorCode, AsyncCallback callback, object state) 3482internal IAsyncResult UnsafeBeginSend(byte[] buffer, int offset, int size, SocketFlags socketFlags, AsyncCallback callback, object state) 3569AsyncCallback callback, 3688public IAsyncResult BeginSend(IList<ArraySegment<byte>> buffers, SocketFlags socketFlags, AsyncCallback callback, object state) 3700public IAsyncResult BeginSend(IList<ArraySegment<byte>> buffers, SocketFlags socketFlags, out SocketError errorCode, AsyncCallback callback, object state) 3964public IAsyncResult BeginSendTo(byte[] buffer, int offset, int size, SocketFlags socketFlags, EndPoint remoteEP, AsyncCallback callback, object state) 4179public IAsyncResult BeginReceive(byte[] buffer, int offset, int size, SocketFlags socketFlags, AsyncCallback callback, object state) 4191public IAsyncResult BeginReceive(byte[] buffer, int offset, int size, SocketFlags socketFlags, out SocketError errorCode, AsyncCallback callback, object state) 4234internal IAsyncResult UnsafeBeginReceive(byte[] buffer, int offset, int size, SocketFlags socketFlags, AsyncCallback callback, object state) 4316public IAsyncResult BeginReceive(IList<ArraySegment<byte>> buffers, SocketFlags socketFlags, AsyncCallback callback, object state) 4328public IAsyncResult BeginReceive(IList<ArraySegment<byte>> buffers, SocketFlags socketFlags, out SocketError errorCode, AsyncCallback callback, object state) 4531public IAsyncResult BeginReceiveMessageFrom(byte[] buffer, int offset, int size, SocketFlags socketFlags, ref EndPoint remoteEP, AsyncCallback callback, object state) { 4767public IAsyncResult BeginReceiveFrom(byte[] buffer, int offset, int size, SocketFlags socketFlags, ref EndPoint remoteEP, AsyncCallback callback, object state) { 5016public IAsyncResult BeginAccept(AsyncCallback callback, object state) { 5341public IAsyncResult BeginAccept(int receiveSize, AsyncCallback callback, object state) { 5351public IAsyncResult BeginAccept(Socket acceptSocket, int receiveSize, AsyncCallback callback, object state) { 6069private MultipleAddressConnectAsyncResult InternalBeginConnectHostName(string host, int port, AsyncCallback requestCallback, object state) 6876private IAsyncResult BeginConnectEx(EndPoint remoteEP, bool flowContext, AsyncCallback callback, object state) 7067internal MultipleAddressConnectAsyncResult(IPAddress[] addresses, int port, Socket socket, object myState, AsyncCallback myCallBack) : 7191internal IAsyncResult BeginMultipleSend(BufferOffsetSize[] buffers, SocketFlags socketFlags, AsyncCallback callback, object state) { 7204internal IAsyncResult UnsafeBeginMultipleSend(BufferOffsetSize[] buffers, SocketFlags socketFlags, AsyncCallback callback, object state) 8442internal ConnectAsyncResult(object myObject, EndPoint endPoint, object myState, AsyncCallback myCallBack):base(myObject, myState, myCallBack) { 8451internal AcceptAsyncResult(object myObject, object myState, AsyncCallback myCallBack):base(myObject, myState, myCallBack) {
net\System\Net\Sockets\TCPClient.cs (3)
363public IAsyncResult BeginConnect(string host, int port, AsyncCallback requestCallback, object state) 372public IAsyncResult BeginConnect(IPAddress address, int port, AsyncCallback requestCallback, object state) 381public IAsyncResult BeginConnect(IPAddress[] addresses, int port, AsyncCallback requestCallback, object state)
net\System\Net\Sockets\TCPListener.cs (2)
269public IAsyncResult BeginAcceptSocket(AsyncCallback callback, object state) 303public IAsyncResult BeginAcceptTcpClient(AsyncCallback callback, object state)
net\System\Net\Sockets\UDPClient.cs (4)
608public IAsyncResult BeginSend(byte[] datagram, int bytes, IPEndPoint endPoint, AsyncCallback requestCallback, object state) { 642public IAsyncResult BeginSend(byte[] datagram, int bytes, string hostname, int port, AsyncCallback requestCallback, object state) { 671public IAsyncResult BeginSend(byte[] datagram, int bytes, AsyncCallback requestCallback, object state) { 733public IAsyncResult BeginReceive(AsyncCallback requestCallback, object state) {
net\System\Net\webclient.cs (2)
3050public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, object state) { 3055public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, object state ) {
net\System\Net\WebRequest.cs (2)
829public virtual IAsyncResult BeginGetResponse(AsyncCallback callback, object state) { 846public virtual IAsyncResult BeginGetRequestStream(AsyncCallback callback, Object state) {
net\System\Net\WebSockets\WebSocketConnectionStream.cs (3)
458private static readonly Func<IList<ArraySegment<byte>>, AsyncCallback, object, IAsyncResult> s_BeginMultipleWrite = 459new Func<IList<ArraySegment<byte>>, AsyncCallback, object, IAsyncResult>(BeginMultipleWrite); 597private static IAsyncResult BeginMultipleWrite(IList<ArraySegment<byte>> sendBuffers, AsyncCallback callback, object asyncState)
net\System\Net\WebSockets\WebSocketHttpListenerDuplexStream.cs (2)
332AsyncCallback callback, 581AsyncCallback callback,
sys\system\configuration\ClientSettingsStore.cs (2)
465AsyncCallback userCallback, Object stateObject) { 475AsyncCallback userCallback, Object stateObject) {
sys\System\IO\compression\DeflateStream.cs (3)
33private readonly AsyncCallback m_CallBack; 378public override IAsyncResult BeginRead(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) { 642public override IAsyncResult BeginWrite(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) {
sys\System\IO\compression\DeflateStreamAsyncResult.cs (2)
15private AsyncCallback m_AsyncCallback; // Caller's callback method. 24AsyncCallback asyncCallback,
sys\System\IO\compression\GZipStream.cs (2)
110public override IAsyncResult BeginRead(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) { 127public override IAsyncResult BeginWrite(byte[] array, int offset, int count, AsyncCallback asyncCallback, object asyncState) {
sys\system\io\ports\SerialStream.cs (6)
869public override IAsyncResult BeginRead(byte[] array, int offset,int numBytes, AsyncCallback userCallback, object stateObject) 901AsyncCallback userCallback, object stateObject) 1424unsafe private SerialStreamAsyncResult BeginReadCore(byte[] array, int offset, int numBytes, AsyncCallback userCallback, Object stateObject) 1480unsafe private SerialStreamAsyncResult BeginWriteCore(byte[] array, int offset, int numBytes, AsyncCallback userCallback, Object stateObject) 1662AsyncCallback userCallback = asyncResult._userCallback; 1934internal AsyncCallback _userCallback;
System.Activities (124)
System\Activities\AsyncCodeActivity.cs (4)
16static AsyncCallback onExecuteComplete; 54internal static AsyncCallback OnExecuteComplete 75protected abstract IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state); 347protected abstract IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state);
System\Activities\AsyncOperationContext.cs (1)
14static AsyncCallback onResumeAsyncCodeActivityBookmark;
System\Activities\DurableInstancing\PersistenceIOParticipant.cs (4)
24protected virtual IAsyncResult BeginOnSave(IDictionary<XName, object> readWriteValues, IDictionary<XName, object> writeOnlyValues, TimeSpan timeout, AsyncCallback callback, object state) 37protected virtual IAsyncResult BeginOnLoad(IDictionary<XName, object> readWriteValues, TimeSpan timeout, AsyncCallback callback, object state) 50internal override IAsyncResult InternalBeginOnSave(IDictionary<XName, object> readWriteValues, IDictionary<XName, object> writeOnlyValues, TimeSpan timeout, AsyncCallback callback, object state) 60internal override IAsyncResult InternalBeginOnLoad(IDictionary<XName, object> readWriteValues, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\DurableInstancing\PersistenceParticipant.cs (4)
88IAsyncResult IPersistencePipelineModule.BeginOnSave(IDictionary<XName, object> readWriteValues, IDictionary<XName, object> writeOnlyValues, TimeSpan timeout, AsyncCallback callback, object state) 98IAsyncResult IPersistencePipelineModule.BeginOnLoad(IDictionary<XName, object> readWriteValues, TimeSpan timeout, AsyncCallback callback, object state) 113internal virtual IAsyncResult InternalBeginOnSave(IDictionary<XName, object> readWriteValues, IDictionary<XName, object> writeOnlyValues, TimeSpan timeout, AsyncCallback callback, object state) 123internal virtual IAsyncResult InternalBeginOnLoad(IDictionary<XName, object> readWriteValues, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\Expressions\InvokeMethod.cs (1)
139protected override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state)
System\Activities\Hosting\WorkflowInstance.cs (7)
470protected internal abstract IAsyncResult OnBeginResumeBookmark(Bookmark bookmark, object value, TimeSpan timeout, AsyncCallback callback, object state); 473protected internal abstract IAsyncResult OnBeginPersist(AsyncCallback callback, object state); 478protected internal abstract IAsyncResult OnBeginAssociateKeys(ICollection<InstanceKey> keys, AsyncCallback callback, object state); 481internal IAsyncResult BeginFlushTrackingRecordsInternal(AsyncCallback callback, object state) 499protected IAsyncResult BeginFlushTrackingRecords(TimeSpan timeout, AsyncCallback callback, object state) 523protected virtual IAsyncResult OnBeginFlushTrackingRecords(AsyncCallback callback, object state) 1118public IAsyncResult BeginFlushTrackingRecords(TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\Hosting\WorkflowInstanceProxy.cs (2)
35public IAsyncResult BeginResumeBookmark(Bookmark bookmark, object value, AsyncCallback callback, object state) 40public IAsyncResult BeginResumeBookmark(Bookmark bookmark, object value, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\Runtime\ActivityExecutor.cs (9)
994public IAsyncResult BeginTrackPendingRecords(AsyncCallback callback, object state) 1980internal IAsyncResult BeginAssociateKeys(ICollection<InstanceKey> keysToAssociate, AsyncCallback callback, object state) 2640internal IAsyncResult BeginResumeBookmark(Bookmark bookmark, object value, TimeSpan timeout, AsyncCallback callback, object state) 3837static AsyncCallback persistCompleteCallback; 3838static AsyncCallback commitCompleteCallback; 3850static AsyncCallback PersistCompleteCallback 3863static AsyncCallback CommitCompleteCallback 4234public TransactionalPersistAsyncResult(ActivityExecutor executor, AsyncCallback callback, object state) 4455public AssociateKeysAsyncResult(ActivityExecutor executor, ICollection<InstanceKey> keysToAssociate, AsyncCallback callback, object state)
System\Activities\Runtime\WorkItem.cs (2)
20static AsyncCallback associateCallback; 21static AsyncCallback trackingCallback;
System\Activities\Statements\DurableTimerExtension.cs (2)
24static AsyncCallback onResumeBookmarkComplete = Fx.ThunkCallback(new AsyncCallback(OnResumeBookmarkComplete)); 293protected override IAsyncResult BeginOnSave(IDictionary<XName, object> readWriteValues, IDictionary<XName, object> writeOnlyValues, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\Statements\InvokeMethod.cs (1)
155protected override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state)
System\Activities\Statements\MethodExecutor.cs (2)
44protected abstract IAsyncResult BeginMakeMethodCall(AsyncCodeActivityContext context, object target, AsyncCallback callback, object state); 104public IAsyncResult BeginExecuteMethod(AsyncCodeActivityContext context, AsyncCallback callback, object state)
System\Activities\Statements\MethodResolver.cs (5)
247beginMethodParameterTypes[formalParamCount] = typeof(AsyncCallback); 593protected override IAsyncResult BeginMakeMethodCall(AsyncCodeActivityContext context, object target, AsyncCallback callback, object state) 651protected override IAsyncResult BeginMakeMethodCall(AsyncCodeActivityContext context, object target, AsyncCallback callback, object state) 710protected override IAsyncResult BeginMakeMethodCall(AsyncCodeActivityContext context, object target, AsyncCallback callback, object state) 739public ExecuteAsyncResult(InvokeMethodInstanceData instance, AsyncWaitCallbackMethodExecutor executor, AsyncCallback callback, object state)
System\Activities\Tracking\EtwTrackingParticipant.cs (1)
79protected internal override IAsyncResult BeginTrack(TrackingRecord record, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\Tracking\TrackingParticipant.cs (2)
23protected internal virtual IAsyncResult BeginTrack(TrackingRecord record, TimeSpan timeout, AsyncCallback callback, object state) 45public TrackAsyncResult(TrackingParticipant participant, TrackingRecord record, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\Tracking\TrackingProvider.cs (2)
201public IAsyncResult BeginFlushPendingRecords(TimeSpan timeout, AsyncCallback callback, object state) 309public FlushPendingRecordsAsyncResult(TrackingProvider provider, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\WorkflowApplication.cs (64)
54static AsyncCallback eventFrameCallback; 276static AsyncCallback EventFrameCallback 1064public IAsyncResult BeginTerminate(string reason, AsyncCallback callback, object state) 1069public IAsyncResult BeginTerminate(Exception reason, AsyncCallback callback, object state) 1074public IAsyncResult BeginTerminate(string reason, TimeSpan timeout, AsyncCallback callback, object state) 1084public IAsyncResult BeginTerminate(Exception reason, TimeSpan timeout, AsyncCallback callback, object state) 1154public IAsyncResult BeginCancel(AsyncCallback callback, object state) 1159public IAsyncResult BeginCancel(TimeSpan timeout, AsyncCallback callback, object state) 1291internal static IAsyncResult BeginInvoke(Activity activity, IDictionary<string, object> inputs, WorkflowInstanceExtensionManager extensions, TimeSpan timeout, SynchronizationContext syncContext, AsyncInvokeContext invokeContext, AsyncCallback callback, object state) 1358public IAsyncResult BeginRun(AsyncCallback callback, object state) 1363public IAsyncResult BeginRun(TimeSpan timeout, AsyncCallback callback, object state) 1368IAsyncResult BeginInternalRun(TimeSpan timeout, bool isUserRun, AsyncCallback callback, object state) 1456WorkflowIdentityFilter identityFilter, AsyncCallback callback, object state) 1462WorkflowIdentityFilter identityFilter, TimeSpan timeout, AsyncCallback callback, object state) 1506public static IAsyncResult BeginDeleteDefaultInstanceOwner(InstanceStore instanceStore, AsyncCallback callback, object state) 1511public static IAsyncResult BeginDeleteDefaultInstanceOwner(InstanceStore instanceStore, TimeSpan timeout, AsyncCallback callback, object state) 1602public static IAsyncResult BeginGetRunnableInstance(InstanceStore instanceStore, AsyncCallback callback, object state) 1607public static IAsyncResult BeginGetRunnableInstance(InstanceStore instanceStore, TimeSpan timeout, AsyncCallback callback, object state) 1649public static IAsyncResult BeginGetInstance(Guid instanceId, InstanceStore instanceStore, AsyncCallback callback, object state) 1654public static IAsyncResult BeginGetInstance(Guid instanceId, InstanceStore instanceStore, TimeSpan timeout, AsyncCallback callback, object state) 2045internal static IAsyncResult BeginDiscardInstance(PersistenceManagerBase persistanceManager, TimeSpan timeout, AsyncCallback callback, object state) 2084public IAsyncResult BeginLoadRunnableInstance(AsyncCallback callback, object state) 2089public IAsyncResult BeginLoadRunnableInstance(TimeSpan timeout, AsyncCallback callback, object state) 2121public IAsyncResult BeginLoad(Guid instanceId, AsyncCallback callback, object state) 2126public IAsyncResult BeginLoad(Guid instanceId, TimeSpan timeout, AsyncCallback callback, object state) 2155public IAsyncResult BeginLoad(WorkflowApplicationInstance instance, AsyncCallback callback, object state) 2161AsyncCallback callback, object state) 2167AsyncCallback callback, object state) 2173AsyncCallback callback, object state) 2255IAsyncResult BeginInternalPersist(PersistenceOperation operation, TimeSpan timeout, bool isInternalPersist, AsyncCallback callback, object state) 2439public IAsyncResult BeginPersist(AsyncCallback callback, object state) 2445public IAsyncResult BeginPersist(TimeSpan timeout, AsyncCallback callback, object state) 2493protected internal override IAsyncResult OnBeginPersist(AsyncCallback callback, object state) 2503protected internal override IAsyncResult OnBeginAssociateKeys(ICollection<InstanceKey> keys, AsyncCallback callback, object state) 2640public IAsyncResult BeginResumeBookmark(string bookmarkName, object value, AsyncCallback callback, object state) 2651public IAsyncResult BeginResumeBookmark(string bookmarkName, object value, TimeSpan timeout, AsyncCallback callback, object state) 2662public IAsyncResult BeginResumeBookmark(Bookmark bookmark, object value, AsyncCallback callback, object state) 2668public IAsyncResult BeginResumeBookmark(Bookmark bookmark, object value, TimeSpan timeout, AsyncCallback callback, object state) 2682protected internal override IAsyncResult OnBeginResumeBookmark(Bookmark bookmark, object value, TimeSpan timeout, AsyncCallback callback, object state) 2845public IAsyncResult BeginUnload(AsyncCallback callback, object state) 2851public IAsyncResult BeginUnload(TimeSpan timeout, AsyncCallback callback, object state) 3072public InvokeAsyncResult(Activity activity, IDictionary<string, object> inputs, WorkflowInstanceExtensionManager extensions, TimeSpan timeout, SynchronizationContext syncContext, AsyncInvokeContext invokeContext, AsyncCallback callback, object state) 3191public ResumeBookmarkAsyncResult(WorkflowApplication instance, Bookmark bookmark, object value, TimeSpan timeout, AsyncCallback callback, object state) 3196public ResumeBookmarkAsyncResult(WorkflowApplication instance, Bookmark bookmark, object value, bool isFromExtension, TimeSpan timeout, AsyncCallback callback, object state) 3447bool isWorkflowThread, bool isInternalPersist, AsyncCallback callback, object state) 3933static AsyncCallback trackingCompleteCallback = Fx.ThunkCallback(new AsyncCallback(OnTrackingComplete)); 3938protected SimpleOperationAsyncResult(WorkflowApplication instance, AsyncCallback callback, object state) 4091TerminateAsyncResult(WorkflowApplication instance, Exception reason, AsyncCallback callback, object state) 4097public static TerminateAsyncResult Create(WorkflowApplication instance, Exception reason, TimeSpan timeout, AsyncCallback callback, object state) 4122CancelAsyncResult(WorkflowApplication instance, AsyncCallback callback, object state) 4127public static CancelAsyncResult Create(WorkflowApplication instance, TimeSpan timeout, AsyncCallback callback, object state) 4154RunAsyncResult(WorkflowApplication instance, bool isUserRun, AsyncCallback callback, object state) 4160public static RunAsyncResult Create(WorkflowApplication instance, bool isUserRun, TimeSpan timeout, AsyncCallback callback, object state) 4201public UnlockInstanceAsyncResult(PersistenceManager persistenceManager, TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 4303AsyncCallback callback, object state) 4316bool loadAny, TimeSpan timeout, AsyncCallback callback, object state) 5318TimeSpan timeout, AsyncCallback callback, object state) 5708public IAsyncResult BeginInitialize(WorkflowIdentity definitionIdentity, TimeSpan timeout, AsyncCallback callback, object state) 5770public IAsyncResult BeginDeleteOwner(TimeSpan timeout, AsyncCallback callback, object state) 5821public IAsyncResult BeginEnsureReadyness(TimeSpan timeout, AsyncCallback callback, object state) 5983public IAsyncResult BeginSave(IDictionary<XName, InstanceValue> instance, PersistenceOperation operation, TimeSpan timeout, AsyncCallback callback, object state) 5994public IAsyncResult BeginLoad(TimeSpan timeout, AsyncCallback callback, object state) 6012public IAsyncResult BeginTryLoad(TimeSpan timeout, AsyncCallback callback, object state) 6049public IAsyncResult BeginUnlock(TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\WorkflowApplicationInstance.cs (2)
89public IAsyncResult BeginAbandon(AsyncCallback callback, object state) 94public IAsyncResult BeginAbandon(TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\WorkflowInvoker.cs (8)
19static AsyncCallback cancelCallback; 20static AsyncCallback invokeCallback; 164public IAsyncResult BeginInvoke(AsyncCallback callback, object state) 170public IAsyncResult BeginInvoke(TimeSpan timeout, AsyncCallback callback, object state) 178public IAsyncResult BeginInvoke(IDictionary<string, object> inputs, AsyncCallback callback, object state) 184public IAsyncResult BeginInvoke(IDictionary<string, object> inputs, TimeSpan timeout, AsyncCallback callback, object state) 360IAsyncResult BeginInvoke(Activity workflow, IDictionary<string, object> inputs, TimeSpan timeout, WorkflowInstanceExtensionManager extensions, AsyncCallback callback, object state) 373IAsyncResult BeginInvoke(Activity workflow, TimeSpan timeout, WorkflowInstanceExtensionManager extensions, AsyncCallback callback, object state)
System\Activities\WorkflowPersistenceContext.cs (1)
73public bool TryBeginComplete(AsyncCallback callback, object state, out IAsyncResult result)
System.Activities.DurableInstancing (28)
System\Activities\DurableInstancing\CreateWorkflowOwnerAsyncResult.cs (1)
36AsyncCallback callback,
System\Activities\DurableInstancing\DeleteWorkflowOwnerAsyncResult.cs (1)
26AsyncCallback callback,
System\Activities\DurableInstancing\DetectActivatableWorkflowsAsyncResult.cs (1)
27AsyncCallback callback,
System\Activities\DurableInstancing\DetectRunnableInstancesAsyncResult.cs (1)
27AsyncCallback callback,
System\Activities\DurableInstancing\ExtendLockAsyncResult.cs (1)
26AsyncCallback callback,
System\Activities\DurableInstancing\LoadRetryAsyncResult.cs (2)
16static AsyncCallback onTryCommandCallback = Fx.ThunkCallback(new AsyncCallback(OnTryCommandCallback)); 24InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\DurableInstancing\LoadWorkflowAsyncResult.cs (1)
34AsyncCallback callback,
System\Activities\DurableInstancing\LoadWorkflowByKeyAsyncResult.cs (1)
22AsyncCallback callback,
System\Activities\DurableInstancing\PersistenceTask.cs (1)
14AsyncCallback commandCompletedCallback;
System\Activities\DurableInstancing\QueryActivatableWorkflowAsyncResult.cs (1)
28AsyncCallback callback,
System\Activities\DurableInstancing\RecoverInstanceLocksAsyncResult.cs (1)
26AsyncCallback callback,
System\Activities\DurableInstancing\SaveWorkflowAsyncResult.cs (1)
54AsyncCallback callback,
System\Activities\DurableInstancing\SqlCommandAsyncResult.cs (2)
61TimeSpan timeout, int retryCount, int maximumRetries, AsyncCallback callback, object state) 268AsyncCallback wrappedCallback = this.PrepareAsyncCompletion(onExecuteReaderCallback);
System\Activities\DurableInstancing\SqlWorkflowInstanceStore.cs (6)
43AsyncCallback unlockInstanceCallback; 330protected internal override IAsyncResult BeginTryCommand(InstancePersistenceContext context, InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state) 355internal IAsyncResult BeginTryCommandSkipRetry(InstancePersistenceContext context, InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state) 391internal IAsyncResult BeginTryCommandInternalWithVersionCheck(InstancePersistenceContext context, InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state, Version targetVersion) 398internal IAsyncResult BeginTryCommandInternal(InstancePersistenceContext context, InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state) 403internal IAsyncResult BeginTryCommandInternal(InstancePersistenceContext context, InstancePersistenceCommand command, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state)
System\Activities\DurableInstancing\SqlWorkflowInstanceStoreAsyncResult.cs (2)
30AsyncCallback callback, 47AsyncCallback callback,
System\Activities\DurableInstancing\TestVersionAndRunAsyncResult.cs (2)
19static readonly AsyncCallback instanceCommandCompleteCallback = Fx.ThunkCallback(InstanceCommandCompleteCallback); 33AsyncCallback callback,
System\Activities\DurableInstancing\TryLoadRunnableWorkflowAsyncResult.cs (1)
26AsyncCallback callback,
System\Activities\DurableInstancing\UnlockInstanceAsyncResult.cs (1)
25AsyncCallback callback,
System\Activities\DurableInstancing\WorkflowOwnerAsyncResult.cs (1)
26AsyncCallback callback,
System.Core (9)
System\IO\Pipes\Pipe.cs (3)
648public unsafe IAsyncResult BeginWaitForConnection(AsyncCallback callback, Object state) { 919AsyncCallback userCallback = asyncResult._userCallback; 1416internal AsyncCallback _userCallback; // User code callback
System\IO\Pipes\PipeStream.cs (6)
240public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 282AsyncCallback callback, Object state) { 471public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 499AsyncCallback callback, Object state) { 1270AsyncCallback callback = asyncResult._userCallback; 1278internal AsyncCallback _userCallback; // User callback
System.Data (15)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (11)
1243public IAsyncResult BeginExecuteNonQuery(AsyncCallback callback, object stateObject) { 1249private IAsyncResult BeginExecuteNonQueryAsync(AsyncCallback callback, object stateObject) { 1253private IAsyncResult BeginExecuteNonQueryInternal(CommandBehavior behavior, AsyncCallback callback, object stateObject, int timeout, bool inRetry, bool asyncWrite = false) { 1734public IAsyncResult BeginExecuteXmlReader(AsyncCallback callback, object stateObject) { 1740private IAsyncResult BeginExecuteXmlReaderAsync(AsyncCallback callback, object stateObject) { 1744private IAsyncResult BeginExecuteXmlReaderInternal(CommandBehavior behavior, AsyncCallback callback, object stateObject, int timeout, bool inRetry, bool asyncWrite = false) { 1956public IAsyncResult BeginExecuteReader(AsyncCallback callback, object stateObject) { 1998public IAsyncResult BeginExecuteReader(AsyncCallback callback, object stateObject, CommandBehavior behavior) { 2133private IAsyncResult BeginExecuteReaderAsync(CommandBehavior behavior, AsyncCallback callback, object stateObject) { 2137private IAsyncResult BeginExecuteReaderInternal(CommandBehavior behavior, AsyncCallback callback, object stateObject, int timeout, bool inRetry, bool asyncWrite = false) { 2198private bool TriggerInternalEndAndRetryIfNecessary(CommandBehavior behavior, object stateObject, int timeout, string endMethod, bool usedCache, bool inRetry, bool asyncWrite, TaskCompletionSource<object> globalCompletion, TaskCompletionSource<object> localCompletion, Func<IAsyncResult, string, bool, object> endFunc, Func<CommandBehavior, AsyncCallback, object, int, bool, bool, IAsyncResult> retryFunc) {
fx\src\data\System\Data\SqlClient\SqlDependencyListener.cs (1)
306AsyncCallback callback = new AsyncCallback(AsyncResultCallback);
fx\src\data\System\Data\SqlClient\SqlSequentialStream.cs (1)
116public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (2)
306public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) 323public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
System.Data.Services (1)
parent\Client\System\Data\Services\Client\BatchStream.cs (1)
199public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System.Data.Services.Client (31)
System\Data\Services\Client\BaseAsyncResult.cs (9)
33private readonly AsyncCallback userCallback; 75internal BaseAsyncResult(object source, string method, AsyncCallback callback, object state) 293internal static IAsyncResult InvokeAsync(Func<AsyncCallback, object, IAsyncResult> asyncAction, AsyncCallback callback, object state) 316internal static IAsyncResult InvokeAsync(Func<byte[], int, int, AsyncCallback, object, IAsyncResult> asyncAction, byte[] buffer, int offset, int length, AsyncCallback callback, object state) 415private static IAsyncResult PostInvokeAsync(IAsyncResult asyncResult, AsyncCallback callback) 436private static AsyncCallback GetDataServiceAsyncCallback(AsyncCallback callback)
System\Data\Services\Client\BatchStream.cs (1)
199public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\Data\Services\Client\DataServiceContext.cs (13)
614public IAsyncResult BeginLoadProperty(object entity, string propertyName, AsyncCallback callback, object state) 628public IAsyncResult BeginLoadProperty(object entity, string propertyName, Uri nextLinkUri, AsyncCallback callback, object state) 644public IAsyncResult BeginLoadProperty(object entity, string propertyName, DataServiceQueryContinuation continuation, AsyncCallback callback, object state) 792public IAsyncResult BeginGetReadStream(object entity, DataServiceRequestArgs args, AsyncCallback callback, object state) 964public IAsyncResult BeginExecuteBatch(AsyncCallback callback, object state, params DataServiceRequest[] queries) 1011public IAsyncResult BeginExecute<TElement>(Uri requestUri, AsyncCallback callback, object state) 1026public IAsyncResult BeginExecute<T>(DataServiceQueryContinuation<T> continuation, AsyncCallback callback, object state) 1092public IAsyncResult BeginSaveChanges(AsyncCallback callback, object state) 1108public IAsyncResult BeginSaveChanges(SaveChangesOptions options, AsyncCallback callback, object state) 3231private LoadPropertyResult CreateLoadPropertyRequest(object entity, string propertyName, AsyncCallback callback, object state, Uri requestUri, DataServiceQueryContinuation continuation) 3602AsyncCallback callback, 3712internal LoadPropertyResult(object entity, string propertyName, DataServiceContext context, HttpWebRequest request, AsyncCallback callback, object state, DataServiceRequest dataServiceRequest, ProjectionPlan plan) 4132internal SaveResult(DataServiceContext context, string method, DataServiceRequest[] queries, SaveChangesOptions options, AsyncCallback callback, object state, bool async)
System\Data\Services\Client\DataServiceQuery.cs (2)
65public IAsyncResult BeginExecute(AsyncCallback callback, object state) 95internal abstract IAsyncResult BeginExecuteInternal(AsyncCallback callback, object state);
System\Data\Services\Client\DataServiceQueryOfT.cs (2)
122public new IAsyncResult BeginExecute(AsyncCallback callback, object state) 261internal override IAsyncResult BeginExecuteInternal(AsyncCallback callback, object state)
System\Data\Services\Client\DataServiceRequest.cs (2)
253internal IAsyncResult BeginExecute(object source, DataServiceContext context, AsyncCallback callback, object state) 268private QueryResult CreateResult(object source, DataServiceContext context, AsyncCallback callback, object state)
System\Data\Services\Client\GetReadStreamResult.cs (1)
45AsyncCallback callback,
System\Data\Services\Client\QueryResult.cs (1)
89internal QueryResult(object source, string method, DataServiceRequest serviceRequest, HttpWebRequest request, AsyncCallback callback, object state)
System.IdentityModel (16)
System\IdentityModel\AsyncResult.cs (2)
47AsyncCallback callback; 80protected AsyncResult(AsyncCallback callback, object state)
System\IdentityModel\SecurityTokenService.cs (6)
148public virtual IAsyncResult BeginCancel(ClaimsPrincipal principal, RST request, AsyncCallback callback, object state) 163protected virtual IAsyncResult BeginGetScope(ClaimsPrincipal principal, RST request, AsyncCallback callback, object state) 177public virtual IAsyncResult BeginIssue(ClaimsPrincipal principal, RST request, AsyncCallback callback, object state) 213public virtual IAsyncResult BeginRenew(ClaimsPrincipal principal, RST request, AsyncCallback callback, object state) 227public virtual IAsyncResult BeginValidate(ClaimsPrincipal principal, RST request, AsyncCallback callback, object state) 661protected virtual IAsyncResult BeginGetOutputClaimsIdentity(ClaimsPrincipal principal, RequestSecurityToken request, Scope scope, AsyncCallback callback, object state)
System\IdentityModel\Selectors\SecurityTokenProvider.cs (7)
36public IAsyncResult BeginGetToken(TimeSpan timeout, AsyncCallback callback, object state) 69public IAsyncResult BeginRenewToken(TimeSpan timeout, SecurityToken tokenToBeRenewed, AsyncCallback callback, object state) 101public IAsyncResult BeginCancelToken(TimeSpan timeout, SecurityToken token, AsyncCallback callback, object state) 132protected virtual IAsyncResult BeginGetTokenCore(TimeSpan timeout, AsyncCallback callback, object state) 143protected virtual IAsyncResult BeginRenewTokenCore(TimeSpan timeout, SecurityToken tokenToBeRenewed, AsyncCallback callback, object state) 154protected virtual IAsyncResult BeginCancelTokenCore(TimeSpan timeout, SecurityToken token, AsyncCallback callback, object state) 172public SecurityTokenAsyncResult(SecurityToken token, AsyncCallback callback, object state)
System\IdentityModel\TypedAsyncResult.cs (1)
34public TypedAsyncResult( AsyncCallback callback, object state )
System.IO.Log (34)
System\IO\Log\FileRecordSequence.cs (9)
240AsyncCallback callback, 258AsyncCallback callback, 275AsyncCallback callback, 289AsyncCallback callback, 298AsyncCallback callback, 312AsyncCallback callback, 332AsyncCallback callback, 350AsyncCallback callback, 364AsyncCallback callback,
System\IO\Log\FileRecordSequenceCompletedAsyncResult.cs (2)
24AsyncCallback callback; 33AsyncCallback callback,
System\IO\Log\IRecordSequence.cs (9)
51AsyncCallback callback, 59AsyncCallback callback, 66AsyncCallback callback, 74AsyncCallback callback, 79AsyncCallback callback, 89AsyncCallback callback, 98AsyncCallback callback, 105AsyncCallback callback, 111AsyncCallback callback,
System\IO\Log\LogAppendAsyncResult.cs (1)
19AsyncCallback callback,
System\IO\Log\LogFlushAsyncResult.cs (1)
22AsyncCallback callback,
System\IO\Log\LogRecordSequence.cs (9)
373AsyncCallback callback, 390AsyncCallback callback, 407AsyncCallback callback, 426AsyncCallback callback, 474AsyncCallback callback, 507AsyncCallback callback, 527AsyncCallback callback, 577AsyncCallback callback, 591AsyncCallback callback,
System\IO\Log\LogWriteRestartAreaAsyncResult.cs (1)
19AsyncCallback callback,
System\IO\Log\OverlappedAsyncResult.cs (2)
29AsyncCallback callback; 44protected OverlappedAsyncResult(AsyncCallback callback,
System.Messaging (8)
System\Messaging\MessageQueue.cs (8)
100private AsyncCallback onRequestCompleted; 1497public IAsyncResult BeginPeek(TimeSpan timeout, object stateObject, AsyncCallback callback) 1503public IAsyncResult BeginPeek(TimeSpan timeout, Cursor cursor, PeekAction action, object state, AsyncCallback callback) 1563public IAsyncResult BeginReceive(TimeSpan timeout, object stateObject, AsyncCallback callback) 1569public IAsyncResult BeginReceive(TimeSpan timeout, Cursor cursor, object state, AsyncCallback callback) 2509private unsafe IAsyncResult ReceiveAsync(TimeSpan timeout, CursorHandle cursorHandle, int action, AsyncCallback callback, object stateObject) 3673private AsyncCallback callback; 3691internal unsafe AsynchronousRequest(MessageQueue owner, uint timeout, CursorHandle cursorHandle, int action, bool useThreadPool, object asyncState, AsyncCallback callback)
System.Net (7)
net\UdpAnySourceMulticastClient.cs (4)
19public IAsyncResult BeginJoinGroup(AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); } 24public IAsyncResult BeginReceiveFromGroup(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); } 29public IAsyncResult BeginSendTo(byte[] buffer, int offset, int count, IPEndPoint remoteEndPoint, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); } 34public IAsyncResult BeginSendToGroup(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); }
net\UdpSingleSourceMulticastClient.cs (3)
19public IAsyncResult BeginJoinGroup(AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); } 24public IAsyncResult BeginReceiveFromSource(byte[] buffer, int offset, int count, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); } 29public IAsyncResult BeginSendToSource(byte[] buffer, int offset, int count, int remotePort, AsyncCallback callback, object state) { throw new SocketException((int)(SocketError.AccessDenied)); }
System.Runtime.DurableInstancing (21)
System\Runtime\DurableInstancing\InstanceHandle.cs (5)
472internal IAsyncResult BeginAcquireExecutionContext(Transaction hostTransaction, TimeSpan timeout, AsyncCallback callback, object state) 771internal static IAsyncResult BeginWaitForEvents(InstanceHandle handle, TimeSpan timeout, AsyncCallback callback, object state) 790public AcquireContextAsyncResult(InstanceHandle handle, Transaction hostTransaction, TimeSpan timeout, out bool setOperationPending, AsyncCallback callback, object state) 802AcquireContextAsyncResult(InstanceHandle handle, Transaction hostTransaction, TimeSpan timeout, out bool setOperationPending, bool synchronous, AsyncCallback callback, object state) 1035internal WaitForEventsAsyncResult(InstanceHandle handle, TimeSpan timeout, AsyncCallback callback, object state)
System\Runtime\DurableInstancing\InstancePersistenceContext.cs (7)
217public IAsyncResult BeginBindReclaimedLock(long instanceVersion, TimeSpan timeout, AsyncCallback callback, object state) 715public IAsyncResult BeginExecute(InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state) 824internal static IAsyncResult BeginOuterExecute(InstanceHandle initialInstanceHandle, InstancePersistenceCommand command, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 958public ExecuteAsyncResult(InstanceHandle initialInstanceHandle, InstancePersistenceCommand command, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 991public ExecuteAsyncResult(InstancePersistenceContext context, InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state) 1097ExecuteAsyncResult(InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state) 1647public BindReclaimedLockAsyncResult(InstancePersistenceContext context, AsyncWaitHandle wait, TimeSpan timeout, AsyncCallback callback, object state)
System\Runtime\DurableInstancing\InstanceStore.cs (3)
88public IAsyncResult BeginExecute(InstanceHandle handle, InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state) 126public IAsyncResult BeginWaitForEvents(InstanceHandle handle, TimeSpan timeout, AsyncCallback callback, object state) 241protected internal virtual IAsyncResult BeginTryCommand(InstancePersistenceContext context, InstancePersistenceCommand command, TimeSpan timeout, AsyncCallback callback, object state)
System\Runtime\IPersistencePipelineModule.cs (2)
21IAsyncResult BeginOnSave(IDictionary<XName, object> readWriteValues, IDictionary<XName, object> writeOnlyValues, TimeSpan timeout, AsyncCallback callback, object state); 24IAsyncResult BeginOnLoad(IDictionary<XName, object> readWriteValues, TimeSpan timeout, AsyncCallback callback, object state);
System\Runtime\PersistencePipeline.cs (3)
160public IAsyncResult BeginSave(TimeSpan timeout, AsyncCallback callback, object state) 183public IAsyncResult BeginLoad(TimeSpan timeout, AsyncCallback callback, object state) 402public IOAsyncResult(PersistencePipeline pipeline, bool isLoad, TimeSpan timeout, AsyncCallback callback, object state)
System\Runtime\TransactedAsyncResult.cs (1)
20protected TransactedAsyncResult(AsyncCallback callback, object state)
System.Runtime.Remoting (21)
channels\core\basicasyncresult.cs (2)
25private AsyncCallback _asyncCallback; 35internal BasicAsyncResult(AsyncCallback callback, Object state)
channels\core\socketmanager.cs (1)
41private AsyncCallback _beginReadCallback; // callback to use when doing an async read
channels\core\socketstream.cs (2)
114AsyncCallback callback, 140AsyncCallback callback,
channels\core\streamhelper.cs (4)
25private static AsyncCallback _asyncCopyStreamReadCallback = new AsyncCallback(AsyncCopyStreamReadCallback); 26private static AsyncCallback _asyncCopyStreamWriteCallback = new AsyncCallback(AsyncCopyStreamWriteCallback); 89AsyncCallback callback, Object state) 242internal AsyncCopyStreamResult(AsyncCallback callback, Object state) :
channels\http\httpclientchannel.cs (4)
918private static AsyncCallback s_processGetRequestStreamCompletionCallback = new AsyncCallback(ProcessGetRequestStreamCompletion); 919private static AsyncCallback s_processAsyncCopyRequestStreamCompletionCallback = new AsyncCallback(ProcessAsyncCopyRequestStreamCompletion); 920private static AsyncCallback s_processGetResponseCompletionCallback = new AsyncCallback(ProcessGetResponseCompletion); 921private static AsyncCallback s_processAsyncCopyRequestStreamCompletion = new AsyncCallback(ProcessAsyncCopyResponseStreamCompletion);
channels\ipc\ipcclientchannel.cs (1)
324AsyncCallback callback = new AsyncCallback(this.AsyncFinishedCallback);
channels\ipc\ipcport.cs (4)
218internal unsafe IAsyncResult BeginRead(byte[] data, int offset, int size, AsyncCallback callback, object state) 276AsyncCallback userCallback = asyncResult._userCallback; 335internal AsyncCallback _userCallback; 339internal PipeAsyncResult(AsyncCallback callback)
channels\ipc\pipestream.cs (2)
96AsyncCallback callback, 121AsyncCallback callback,
channels\tcp\tcpserverchannel.cs (1)
53private AsyncCallback _acceptSocketCallback;
System.Runtime.Serialization (26)
System\Xml\XmlBaseWriter.cs (2)
1368internal override IAsyncResult BeginWriteBase64(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1410public WriteBase64AsyncResult(byte[] buffer, int offset, int count, XmlBaseWriter writer, AsyncCallback callback, object state)
System\Xml\XmlDictionaryWriter.cs (7)
39internal virtual IAsyncResult BeginWriteBase64(byte[] buffer, int index, int count, AsyncCallback callback, object state) 240internal virtual IAsyncResult BeginWriteValue(IStreamProvider value, AsyncCallback callback, object state) 280static AsyncCallback onReadComplete = Fx.ThunkCallback(OnReadComplete); 283public WriteValueFastAsyncResult(XmlDictionaryWriter writer, IStreamProvider value, AsyncCallback callback, object state) 530static AsyncCallback onContinueWork = Fx.ThunkCallback(OnContinueWork); 532public WriteValueAsyncResult(XmlDictionaryWriter writer, IStreamProvider value, AsyncCallback callback, object state) 1132public WriteBase64AsyncResult(byte[] buffer, int index, int count, XmlDictionaryWriter writer, AsyncCallback callback, object state)
System\Xml\XmlMtomReader.cs (3)
2119public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 2852public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 2860public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\Xml\XmlNodeWriter.cs (2)
38public virtual IAsyncResult BeginWriteBase64Text(byte[] trailBuffer, int trailCount, byte[] buffer, int offset, int count, AsyncCallback callback, object state) 160public WriteBase64TextAsyncResult(byte[] trailBuffer, int trailCount, byte[] buffer, int offset, int count, XmlNodeWriter nodeWriter, AsyncCallback callback, object state)
System\Xml\XmlStreamNodeWriter.cs (7)
26static AsyncCallback onFlushBufferComplete; 228protected IAsyncResult BeginGetBuffer(int count, AsyncCallback callback, object state) 246public GetBufferAsyncResult(int count, XmlStreamNodeWriter writer, AsyncCallback callback, object state) 364public IAsyncResult BeginWriteBytes(byte[] byteBuffer, int byteOffset, int byteCount, AsyncCallback callback, object state) 385public WriteBytesAsyncResult(byte[] byteBuffer, int byteOffset, int byteCount, XmlStreamNodeWriter writer, AsyncCallback callback, object state) 700protected virtual IAsyncResult BeginFlushBuffer(AsyncCallback callback, object state) 715public FlushBufferAsyncResult(XmlStreamNodeWriter writer, AsyncCallback callback, object state)
System\Xml\XmlUTF8TextWriter.cs (5)
999public override IAsyncResult BeginWriteBase64Text(byte[] trailBytes, int trailByteCount, byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1009IAsyncResult BeginInternalWriteBase64Text(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1032public WriteBase64TextAsyncResult(byte[] trailBytes, int trailByteCount, byte[] buffer, int offset, int count, XmlUTF8NodeWriter writer, AsyncCallback callback, object state) 1109static AsyncCallback onWriteCharacters = Fx.ThunkCallback(OnWriteCharacters); 1112public InternalWriteBase64TextAsyncResult(byte[] buffer, int offset, int count, XmlUTF8NodeWriter writer, AsyncCallback callback, object state)
System.ServiceModel (1598)
System\ServiceModel\Activation\IConnectionDuplicator.cs (1)
18AsyncCallback callback, object state);
System\ServiceModel\Activation\IConnectionRegister.cs (1)
30IAsyncResult BeginValidateUriRoute(System.Uri uri, IPAddress address, int port, AsyncCallback callback, object asyncState);
System\ServiceModel\ChannelFactory.cs (6)
360protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 365protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 411static AsyncCallback onOpenComplete = Fx.ThunkCallback(new AsyncCallback(OnOpenComplete)); 413public OpenAsyncResult(ICommunicationObject communicationObject, TimeSpan timeout, AsyncCallback callback, object state) 466static AsyncCallback onCloseComplete = Fx.ThunkCallback(new AsyncCallback(OnCloseComplete)); 468public CloseAsyncResult(ICommunicationObject communicationObject, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\BodyWriter.cs (3)
87protected virtual IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 118public IAsyncResult BeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 159public OnWriteBodyContentsAsyncResult(XmlDictionaryWriter writer, BodyWriter bodyWriter, AsyncCallback callback, object state)
System\ServiceModel\Channels\BufferedConnection.cs (2)
321public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state) 355public IAsyncResult BeginAccept(AsyncCallback callback, object state)
System\ServiceModel\Channels\BufferedOutputAsyncStream.cs (6)
269public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 484AsyncCallback callback = thisPtr.writeState.Arguments.Callback; 705static AsyncCallback writeCallback = Fx.ThunkCallback(new AsyncCallback(WriteCallback)); 706static AsyncCallback flushCallback; 924internal AsyncCallback Callback { get; set; } 928internal void Set(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Channels\BufferedRequestContext.cs (2)
114public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state) 119public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ChainedAsyncResult.cs (11)
11internal delegate IAsyncResult ChainedBeginHandler(TimeSpan timeout, AsyncCallback asyncCallback, object state); 20static AsyncCallback begin1Callback = Fx.ThunkCallback(new AsyncCallback(Begin1Callback)); 21static AsyncCallback begin2Callback = Fx.ThunkCallback(new AsyncCallback(Begin2Callback)); 23protected ChainedAsyncResult(TimeSpan timeout, AsyncCallback callback, object state) 29public ChainedAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, ChainedBeginHandler begin1, ChainedEndHandler end1, ChainedBeginHandler begin2, ChainedEndHandler end2) 133public ChainedCloseAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, ChainedBeginHandler begin1, ChainedEndHandler end1, IList<ICommunicationObject> collection) 141public ChainedCloseAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, ChainedBeginHandler begin1, ChainedEndHandler end1, params ICommunicationObject[] objs) 153IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 168public ChainedOpenAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, ChainedBeginHandler begin1, ChainedEndHandler end1, IList<ICommunicationObject> collection) 176public ChainedOpenAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, ChainedBeginHandler begin1, ChainedEndHandler end1, params ICommunicationObject[] objs) 188IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ChannelAcceptor.cs (4)
35public abstract IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state); 39public abstract IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state); 46protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 60protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ChannelDemuxer.cs (66)
180IAsyncResult OnBeginOuterListenerOpen(ChannelDemuxerFilter filter, IChannelListener listener, TimeSpan timeout, AsyncCallback callback, object state); 184IAsyncResult OnBeginOuterListenerClose(ChannelDemuxerFilter filter, TimeSpan timeout, AsyncCallback callback, object state); 195static AsyncCallback onReceiveComplete = Fx.ThunkCallback(new AsyncCallback(OnReceiveCompleteStatic)); 239protected abstract IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state); 435public IAsyncResult OnBeginOuterListenerClose(ChannelDemuxerFilter filter, TimeSpan timeout, AsyncCallback callback, object state) 574public IAsyncResult OnBeginOuterListenerOpen(ChannelDemuxerFilter filter, IChannelListener listener, TimeSpan timeout, AsyncCallback callback, object state) 728static AsyncCallback openListenerCallback = Fx.ThunkCallback(new AsyncCallback(OpenListenerCallback)); 729static AsyncCallback acceptChannelCallback = Fx.ThunkCallback(new AsyncCallback(AcceptChannelCallback)); 730static AsyncCallback openChannelCallback = Fx.ThunkCallback(new AsyncCallback(OpenChannelCallback)); 737public OpenAsyncResult(DatagramChannelDemuxer<TInnerChannel, TInnerItem> channelDemuxer, ChannelDemuxerFilter filter, IChannelListener listener, TimeSpan timeout, AsyncCallback callback, object state) 978static AsyncCallback sharedCallback = Fx.ThunkCallback(new AsyncCallback(SharedCallback)); 983public CloseAsyncResult(DatagramChannelDemuxer<TInnerChannel, TInnerItem> channelDemuxer, TimeSpan timeout, AsyncCallback callback, object state) 1111protected override IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 1173protected override IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 1272protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1282protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1311protected override IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 1551protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1561IAsyncResult OnBeginOuterListenerOpen(TimeSpan timeout, AsyncCallback callback, object state) 1584protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1594IAsyncResult OnBeginOuterListenerClose(TimeSpan timeout, AsyncCallback callback, object state) 1631static AsyncCallback onAcceptComplete = Fx.ThunkCallback(new AsyncCallback(OnAcceptCompleteStatic)); 1632static AsyncCallback onPeekComplete = Fx.ThunkCallback(new AsyncCallback(OnPeekCompleteStatic)); 1681protected abstract IAsyncResult BeginReceive(TInnerChannel channel, AsyncCallback callback, object state); 1682protected abstract IAsyncResult BeginReceive(TInnerChannel channel, TimeSpan timeout, AsyncCallback callback, object state); 2083public IAsyncResult OnBeginOuterListenerOpen(ChannelDemuxerFilter filter, IChannelListener listener, TimeSpan timeout, AsyncCallback callback, object state) 2143public IAsyncResult OnBeginOuterListenerClose(ChannelDemuxerFilter filter, TimeSpan timeout, AsyncCallback callback, object state) 2416static AsyncCallback onOpenComplete = Fx.ThunkCallback(new AsyncCallback(OnOpenCompleteStatic)); 2417static AsyncCallback onReceiveComplete = Fx.ThunkCallback(new AsyncCallback(OnReceiveCompleteStatic)); 2419public PeekAsyncResult(SessionChannelDemuxer<TInnerChannel, TInnerItem> demuxer, TInnerChannel channel, AsyncCallback callback, object state) 2530static AsyncCallback openListenerCallback = Fx.ThunkCallback(new AsyncCallback(OpenListenerCallback)); 2537public OpenAsyncResult(SessionChannelDemuxer<TInnerChannel, TInnerItem> channelDemuxer, ChannelDemuxerFilter filter, IChannelListener listener, TimeSpan timeout, AsyncCallback callback, object state) 2698protected override IAsyncResult BeginReceive(IInputSessionChannel channel, AsyncCallback callback, object state) 2703protected override IAsyncResult BeginReceive(IInputSessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 2764protected override IAsyncResult BeginReceive(IDuplexSessionChannel channel, AsyncCallback callback, object state) 2769protected override IAsyncResult BeginReceive(IDuplexSessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 2935public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 2940public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 2964protected override IAsyncResult BeginReceive(IReplySessionChannel channel, AsyncCallback callback, object state) 2969protected override IAsyncResult BeginReceive(IReplySessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 3153protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 3169public ReceiveAsyncResult(TItem item, AsyncCallback callback, object state) 3185public WaitAsyncResult(AsyncCallback callback, object state) 3211protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 3250public IAsyncResult BeginReceive(AsyncCallback callback, object state) 3258public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 3281public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 3306public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 3333protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 3388public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 3396public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 3419public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 3444public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state) 3490protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 3500IAsyncResult OnBeginOuterListenerOpen(TimeSpan timeout, AsyncCallback callback, object state) 3523protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 3533IAsyncResult OnBeginOuterListenerClose(TimeSpan timeout, AsyncCallback callback, object state) 3728static AsyncCallback demuxFailureHandlerCallback = Fx.ThunkCallback(new AsyncCallback(DemuxFailureHandlerCallback)); 3732public ReplyChannelDemuxFailureAsyncResult(IChannelDemuxFailureHandler demuxFailureHandler, RequestContext requestContext, AsyncCallback callback, object state) 3802static AsyncCallback closeChannelCallback = Fx.ThunkCallback(new AsyncCallback(ChannelCloseCallback)); 3805public ReplySessionDemuxFailureAsyncResult(IChannelDemuxFailureHandler demuxFailureHandler, RequestContext requestContext, IReplySessionChannel channel, AsyncCallback callback, object state) 3852static AsyncCallback demuxFailureHandlerCallback = Fx.ThunkCallback(new AsyncCallback(DemuxFailureHandlerCallback)); 3853static AsyncCallback channelCloseCallback = Fx.ThunkCallback(new AsyncCallback(ChannelCloseCallback)); 3858public DuplexSessionDemuxFailureAsyncResult(IChannelDemuxFailureHandler demuxFailureHandler, IDuplexSessionChannel channel, Message message, AsyncCallback callback, object state) 3959IAsyncResult BeginHandleDemuxFailure(Message message, RequestContext faultContext, AsyncCallback callback, object state); 3960IAsyncResult BeginHandleDemuxFailure(Message message, IOutputChannel faultContext, AsyncCallback callback, object state);
System\ServiceModel\Channels\ChannelFactoryBase.cs (2)
61protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 172protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ChannelListenerBase.cs (5)
79public IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state) 92protected abstract IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state); 110protected abstract IAsyncResult OnBeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state); 125public IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state) 130public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ChannelPool.cs (1)
15static AsyncCallback onCloseComplete = Fx.ThunkCallback(new AsyncCallback(OnCloseComplete));
System\ServiceModel\Channels\ChannelReliableSession.cs (6)
208public virtual IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 213public abstract IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state); 707public override IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1046static AsyncCallback onRequestComplete = Fx.ThunkCallback(new AsyncCallback(OnRequestCompleteStatic)); 1050public OpenAsyncResult(ClientReliableSession session, TimeSpan timeout, AsyncCallback callback, object state) 1131public override IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ChannelTracker.cs (2)
132protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 163protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ClientReliableChannelBinder.cs (14)
91public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, 98AsyncCallback callback, object state) 106AsyncCallback callback, object state) 184protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, 190protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, 197TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state) 356TimeSpan timeout, AsyncCallback callback, object state) 362TimeSpan timeout, AsyncCallback callback, object state) 466TimeSpan timeout, AsyncCallback callback, object state) 509public override IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, 577AsyncCallback callback, object state) 583TimeSpan timeout, AsyncCallback callback, object state) 636AsyncCallback callback, object state) 643TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state)
System\ServiceModel\Channels\ClientWebSocketTransportDuplexSessionChannel.cs (1)
46protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\CloseCollectionAsyncResult.cs (2)
15static AsyncCallback nestedCallback = Fx.ThunkCallback(new AsyncCallback(Callback)); 18public CloseCollectionAsyncResult(TimeSpan timeout, AsyncCallback otherCallback, object state, IList<ICommunicationObject> collection)
System\ServiceModel\Channels\CommunicationObject.cs (9)
145public IAsyncResult BeginClose(AsyncCallback callback, object state) 150public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 221public IAsyncResult BeginOpen(AsyncCallback callback, object state) 226public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1025protected abstract IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state); 1028protected abstract IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state); 1033public AlreadyClosedAsyncResult(AsyncCallback callback, object state) 1088public OpenAsyncResult(CommunicationObject communicationObject, TimeSpan timeout, AsyncCallback callback, object state) 1163public CloseAsyncResult(CommunicationObject communicationObject, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\Connection.cs (13)
40IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state); 48IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state); 56IAsyncResult BeginAccept(AsyncCallback callback, object state); 120public virtual IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state) 380public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 395public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 431public IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state) 446protected IOAsyncResult(IConnection connection, AsyncCallback callback, object state) 494AsyncCallback callback, object state) 524public WriteAsyncResult(IConnection connection, byte[] buffer, int offset, int count, bool immediate, TimeSpan timeout, AsyncCallback callback, object state) 552AsyncCallback onRead; 553AsyncCallback onWrite; 674public IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state)
System\ServiceModel\Channels\ConnectionAcceptor.cs (1)
26AsyncCallback acceptCompletedCallback;
System\ServiceModel\Channels\ConnectionDemuxer.cs (4)
22static AsyncCallback onSingletonPreambleComplete; 378AsyncCallback callback, object state) 480static AsyncCallback onPreambleComplete = Fx.ThunkCallback(new AsyncCallback(OnPreambleComplete)); 486AsyncCallback callback, object state)
System\ServiceModel\Channels\ConnectionOrientedTransportChannelFactory.cs (6)
263protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 301protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 314static AsyncCallback onOpenComplete = Fx.ThunkCallback(new AsyncCallback(OnOpenComplete)); 316public OpenAsyncResult(ICommunicationObject communicationObject, TimeSpan timeout, AsyncCallback callback, object state) 384static AsyncCallback onCloseComplete = Fx.ThunkCallback(new AsyncCallback(OnCloseComplete)); 388AsyncCallback callback, object state)
System\ServiceModel\Channels\ConnectionOrientedTransportChannelListener.cs (6)
241protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 297protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 388IAsyncResult DummyBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 398protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 483IAsyncResult DummyBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 493protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ConnectionPool.cs (5)
715AsyncCallback callback, object state); 720public IAsyncResult BeginEstablishConnection(TimeSpan timeout, AsyncCallback callback, object state) 943static AsyncCallback onConnect; 944static AsyncCallback onProcessConnection = Fx.ThunkCallback(new AsyncCallback(OnProcessConnection)); 948TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextChannelListener.cs (2)
40protected override IAsyncResult OnBeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 45protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextChannelRequestContext.cs (5)
43public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state) 48public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state) 113static AsyncCallback onFinalizeCorrelation = Fx.ThunkCallback(new AsyncCallback(OnFinalizeCorrelationCompletedCallback)); 114static AsyncCallback onReply = Fx.ThunkCallback(new AsyncCallback(OnReplyCompletedCallback)); 121public ReplyAsyncResult(Message message, ContextChannelRequestContext context, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextDuplexSessionChannel.cs (4)
49public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 54public IAsyncResult BeginReceive(AsyncCallback callback, object state) 59public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 64public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextInputChannelBase.cs (4)
28public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 33public IAsyncResult BeginReceive(AsyncCallback callback, object state) 38public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 43public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextOutputChannelBase.cs (5)
38public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 43public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 104static AsyncCallback onFinalizeCorrelation = Fx.ThunkCallback(new AsyncCallback(OnFinalizeCorrelationCompletedCallback)); 105static AsyncCallback onSend = Fx.ThunkCallback(new AsyncCallback(OnSendCompletedCallback)); 113TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextReplyChannel.cs (4)
26public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 31public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 36public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 41public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextReplySessionChannel.cs (4)
31public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 36public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 41public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 46public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ContextRequestChannelBase.cs (5)
32public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 38public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) 111static AsyncCallback onFinalizeCorrelation = Fx.ThunkCallback(new AsyncCallback(OnFinalizeCorrelationCompletedCallback)); 112static AsyncCallback onRequest = Fx.ThunkCallback(new AsyncCallback(OnRequestCompletedCallback)); 120public RequestAsyncResult(Message message, IRequestChannel channel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\CorrelationCallbackMessageProperty.cs (2)
123public IAsyncResult BeginFinalizeCorrelation(Message message, TimeSpan timeout, AsyncCallback callback, object state) 177protected abstract IAsyncResult OnBeginFinalizeCorrelation(Message message, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\DatagramAdapter.cs (16)
52static AsyncCallback acceptCallbackDelegate = Fx.ThunkCallback(new AsyncCallback(AcceptCallbackStatic)); 87protected abstract IAsyncResult CallBeginReceive(TSessionChannel channel, AsyncCallback callback, object state); 292protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 323IAsyncResult BeginWaitForAcceptLoop(TimeSpan timeout, AsyncCallback callback, object state) 360static AsyncCallback receiveCallbackDelegate = Fx.ThunkCallback(new AsyncCallback(ReceiveCallbackStatic)); 661internal AsyncWaiter(TimeSpan timeout, AsyncCallback callback, object state) 768AsyncCallback callback, object state) 857AsyncCallback callback, object state) 983protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1092protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1199public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 1204public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1221public SendAsyncResult(OutputDatagramAdapterChannel adapter, Message message, TimeSpan timeout, AsyncCallback callback, object state) 1432public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) 1437public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1455public RequestAsyncResult(RequestDatagramAdapterChannel adapter, Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\DelegatingChannelListener.cs (4)
47protected override IAsyncResult OnBeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 62protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state) 81protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 98protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\DelegatingStream.cs (2)
107public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 112public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Channels\DoneReceivingAsyncResult.cs (1)
12internal DoneReceivingAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Channels\DuplexChannel.cs (7)
29public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 34public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 71protected virtual IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 121public IAsyncResult BeginReceive(AsyncCallback callback, object state) 126public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 153public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 178public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\FramingChannels.cs (15)
227protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 301AsyncCallback callback, object state) 404protected override IAsyncResult BeginAcceptPooledConnection(IConnection connection, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 430static AsyncCallback onUpgrade; 431static AsyncCallback onUpgradeInitiatorOpen; 432static AsyncCallback onUpgradeInitiatorClose; 438ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 846static AsyncCallback onEstablishConnection = Fx.ThunkCallback(new AsyncCallback(OnEstablishConnection)); 850public OpenAsyncResult(ClientFramingDuplexSessionChannel duplexChannel, TimeSpan timeout, AsyncCallback callback, object state) 940Uri via, string contentType, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 992AsyncCallback callback, object state) 1100AsyncCallback callback, object state) 1199static AsyncCallback onInitiateUpgrade = Fx.ThunkCallback(new AsyncCallback(OnInitiateUpgrade)); 1201static AsyncCallback onFailedUpgrade; 1212AsyncCallback callback, object state)
System\ServiceModel\Channels\HttpChannelFactory.cs (14)
520protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1011protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1052protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1087protected override IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state) 1147EndpointAddress to, Uri via, SecurityTokenContainer clientCertificateToken, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 1153EndpointAddress to, Uri via, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 1384static AsyncCallback onProcessIncomingMessage = Fx.ThunkCallback(new AsyncCallback(OnParseIncomingMessage)); 1385static AsyncCallback onGetResponse = Fx.ThunkCallback(new AsyncCallback(OnGetResponse)); 1386static AsyncCallback onGetWebRequestCompleted; 1387static AsyncCallback onSend = Fx.ThunkCallback(new AsyncCallback(OnSend)); 1409public HttpChannelAsyncRequest(HttpRequestChannel channel, AsyncCallback callback, object state) 1922static AsyncCallback onGetSspiCredential; 1923static AsyncCallback onGetUserNameCredential; 1936AsyncCallback callback, object state)
System\ServiceModel\Channels\HttpChannelHelpers.cs (23)
414public IAsyncResult BeginParseIncomingMessage(AsyncCallback callback, object state) 419public IAsyncResult BeginParseIncomingMessage(HttpRequestMessage httpRequestMessage, AsyncCallback callback, object state) 641static AsyncCallback onRead = Fx.ThunkCallback(new AsyncCallback(OnRead)); 646AsyncCallback callback, 974public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1226protected virtual IAsyncResult BeginGetOutputStream(AsyncCallback callback, object state) 1543IAsyncResult BeginWriteStreamedMessage(HttpResponseMessage httpResponseMessage, TimeSpan timeout, AsyncCallback callback, object state) 1628static AsyncCallback onWriteStreamedMessage = Fx.ThunkCallback(OnWriteStreamedMessage); 1631public WriteStreamedMessageAsyncResult(TimeSpan timeout, HttpOutput httpOutput, HttpResponseMessage httpResponseMessage, AsyncCallback callback, object state) 1781public IAsyncResult BeginSend(HttpResponseMessage httpResponseMessage, TimeSpan timeout, AsyncCallback callback, object state) 1787public IAsyncResult BeginSend(TimeSpan timeout, AsyncCallback callback, object state) 1792IAsyncResult BeginSendCore(HttpResponseMessage httpResponseMessage, TimeSpan timeout, AsyncCallback callback, object state) 2020static AsyncCallback onGetOutputStream; 2022static AsyncCallback onWriteStreamedMessage; 2023static AsyncCallback onWriteBody; 2029public SendAsyncResult(HttpOutput httpOutput, HttpResponseMessage httpResponseMessage, bool suppressEntityBody, TimeSpan timeout, AsyncCallback callback, object state) 2497protected override IAsyncResult BeginGetOutputStream(AsyncCallback callback, object state) 2722static AsyncCallback onGetRequestStream = Fx.ThunkCallback(new AsyncCallback(OnGetRequestStream)); 2728public GetOutputStreamAsyncResult(HttpWebRequest httpWebRequest, HttpOutput httpOutput, AsyncCallback callback, object state) 2842public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 3101public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 4014public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 4107public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Channels\HttpChannelListener.cs (10)
407AsyncCallback callback, 897public IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state) 908public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 965protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 997protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1080protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state) 1092AsyncCallback callback, 1223static AsyncCallback onProcessInboundRequest = Fx.ThunkCallback(OnProcessInboundRequest); 1233AsyncCallback callback, 1415public LifetimeWrappedCloseAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, CommunicationObjectManager<TCommunicationObject> communicationObjectManager, ChainedBeginHandler begin1, ChainedEndHandler end1, ICommunicationObject[] communicationObjects)
System\ServiceModel\Channels\HttpPipeline.cs (10)
139internal abstract IAsyncResult BeginProcessInboundRequest(ReplyChannelAcceptor replyChannelAcceptor, Action dequeuedCallback, AsyncCallback callback, object state); 143protected abstract IAsyncResult BeginParseIncomingMessage(AsyncCallback asynCallback, object state); 244AsyncCallback callback, 257protected override IAsyncResult BeginParseIncomingMessage(AsyncCallback asynCallback, object state) 355protected override IAsyncResult BeginParseIncomingMessage(AsyncCallback asynCallback, object state) 390static AsyncCallback onEnqueued = Fx.ThunkCallback(OnEnqueued); 501internal override IAsyncResult BeginProcessInboundRequest(ReplyChannelAcceptor replyChannelAcceptor, Action dequeuedCallback, AsyncCallback callback, object state) 556protected override IAsyncResult BeginParseIncomingMessage(AsyncCallback asynCallback, object state) 878AsyncCallback callback, 886AsyncCallback asynCallback = PrepareAsyncCompletion(HandleParseIncomingMessage);
System\ServiceModel\Channels\HttpRequestContext.cs (8)
343Message message, TimeSpan timeout, AsyncCallback callback, object state) 544public IAsyncResult BeginAcceptWebSocket(HttpResponseMessage response, string protocol, AsyncCallback callback, object state) 556static AsyncCallback onSendCompleted; 565public ReplyAsyncResult(HttpRequestContext context, Message message, TimeSpan timeout, AsyncCallback callback, object state) 757AsyncCallback callback, 1011public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1068static AsyncCallback onHandleAcceptWebSocketResult = Fx.ThunkCallback(new AsyncCallback(HandleAcceptWebSocketResult)); 1074public AcceptWebSocketAsyncResult(HttpRequestContext context, HttpResponseMessage response, string protocol, AsyncCallback callback, object state)
System\ServiceModel\Channels\HttpsChannelFactory.cs (7)
322protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 342protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 356public IAsyncResult BeginBaseGetWebRequest(EndpointAddress to, Uri via, SecurityTokenContainer clientCertificateToken, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 374public override IAsyncResult BeginGetWebRequest(EndpointAddress to, Uri via, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 409static AsyncCallback onGetBaseWebRequestCallback = Fx.ThunkCallback(new AsyncCallback(OnGetBaseWebRequestCallback)); 410static AsyncCallback onGetTokenCallback; 414AsyncCallback callback, object state)
System\ServiceModel\Channels\IChannelAcceptor.cs (2)
10IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state); 14IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\IChannelListener.cs (3)
16IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state); 25IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state); 26IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\IDuplexSession.cs (2)
12IAsyncResult BeginCloseOutputSession(AsyncCallback callback, object state); 13IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\IInputChannel.cs (4)
16IAsyncResult BeginReceive(AsyncCallback callback, object state); 17IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state); 21IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state); 25IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\InitialServerConnectionReader.cs (3)
308IDefaultCommunicationTimeouts defaultTimeouts, AsyncCallback callback, object state) 339static AsyncCallback onAcceptUpgrade = Fx.ThunkCallback(new AsyncCallback(OnAcceptUpgrade)); 345AsyncCallback callback, object state)
System\ServiceModel\Channels\InputChannel.cs (8)
42protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 72public virtual IAsyncResult BeginReceive(AsyncCallback callback, object state) 77public virtual IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 107public virtual IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 136public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 165internal static IAsyncResult HelpBeginReceive(IInputChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 179static AsyncCallback onReceive = Fx.ThunkCallback(new AsyncCallback(OnReceive)); 182public HelpReceiveAsyncResult(IInputChannel channel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InputQueueChannel.cs (3)
101protected IAsyncResult BeginDequeue(TimeSpan timeout, AsyncCallback callback, object state) 145protected IAsyncResult BeginWaitForItem(TimeSpan timeout, AsyncCallback callback, object state) 177protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InputQueueChannelAcceptor.cs (2)
32public override IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 101public override IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InternalDuplexChannelFactory.cs (3)
132protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 149protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 206protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\InternalDuplexChannelListener.cs (12)
40protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 63protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 156public IAsyncResult BeginReceive(AsyncCallback callback, object state) 161public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 171public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 176public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 181public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 201protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 217protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 289static AsyncCallback sendCompleteCallback = Fx.ThunkCallback(new AsyncCallback(SendCompleteCallback)); 292public SendAsyncResult(ServerCompositeDuplexChannel outer, Message message, TimeSpan timeout, AsyncCallback callback, object state) 366public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\IOutputChannel.cs (2)
16IAsyncResult BeginSend(Message message, AsyncCallback callback, object state); 17IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\IPeerNeighbor.cs (2)
18IAsyncResult BeginSend(Message message, AsyncCallback callback, object state); 19IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\IReliableChannelBinder.cs (10)
27IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state); 28IAsyncResult BeginClose(TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state); 32IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state); 35IAsyncResult BeginSend(Message message, TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state); 36IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state); 43IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state); 44IAsyncResult BeginTryReceive(TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state); 61IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state); 62IAsyncResult BeginRequest(Message message, TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state); 74IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\IReplyChannel.cs (4)
15IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state); 16IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state); 20IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state); 24IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\IRequestChannel.cs (2)
16IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state); 17IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\LayeredChannel.cs (2)
59protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 74protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\LayeredChannelFactory.cs (10)
41protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 51protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 118public IAsyncResult BeginReceive(AsyncCallback callback, object state) 123public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 135public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 159public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 212protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 229protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 256public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 261public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\LayeredChannelListener.cs (8)
111protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 140protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 191static AsyncCallback onOpenComplete = Fx.ThunkCallback(new AsyncCallback(OnOpenComplete)); 193public OpenAsyncResult(ICommunicationObject communicationObject, bool sharedInnerListener, TimeSpan timeout, AsyncCallback callback, object state) 245static AsyncCallback onCloseComplete = Fx.ThunkCallback(new AsyncCallback(OnCloseComplete)); 247public CloseAsyncResult(ICommunicationObject communicationObject, bool sharedInnerListener, TimeSpan timeout, AsyncCallback callback, object state) 321public override IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 340public override IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\LifetimeManager.cs (3)
81public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 212protected virtual IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 298public CloseCommunicationAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, object mutex)
System\ServiceModel\Channels\MaxMessageSizeStream.cs (2)
23public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 29public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Channels\Message.cs (9)
446public IAsyncResult BeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 459protected virtual IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 701public IAsyncResult BeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 750protected virtual IAsyncResult OnBeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 804public OnWriteBodyContentsAsyncResult(XmlDictionaryWriter writer, Message message, AsyncCallback callback, object state) 826public OnWriteMessageAsyncResult(XmlDictionaryWriter writer, Message message, AsyncCallback callback, object state) 1134protected override IAsyncResult OnBeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 1145protected override IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 1180public OnWriteMessageAsyncResult(XmlDictionaryWriter writer, BodyWriterMessage message, AsyncCallback callback, object state)
System\ServiceModel\Channels\MessageEncoder.cs (2)
99public virtual IAsyncResult BeginWriteMessage(Message message, Stream stream, AsyncCallback callback, object state) 231public WriteMessageAsyncResult(Message message, Stream stream, MessageEncoder encoder, AsyncCallback callback, object state)
System\ServiceModel\Channels\Msmq4PoisonHandler.cs (1)
30static AsyncCallback onPeekCompleted = Fx.ThunkCallback(OnPeekCompleted);
System\ServiceModel\Channels\MsmqChannelFactoryBase.cs (1)
187protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqChannelListenerBase.cs (4)
95protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 113protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 281public abstract IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state); 283public abstract IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\MsmqInputChannelBase.cs (6)
68protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 89protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 129public IAsyncResult BeginReceive(AsyncCallback callback, object state) 134public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 203public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 293public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqInputChannelListenerBase.cs (3)
56public override IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state) 66public override IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 82protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqInputSessionChannel.cs (9)
100public override IAsyncResult BeginReceive(AsyncCallback callback, object state) 105public override IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 136public override IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 244protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 343protected override IAsyncResult OnBeginAbandon(TimeSpan timeout, AsyncCallback callback, object state) 348protected override IAsyncResult OnBeginComplete(TimeSpan timeout, AsyncCallback callback, object state) 377SessionReceiveContextAsyncResult(MsmqSessionReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state, Action<object> target) 386public static IAsyncResult CreateComplete(MsmqSessionReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state) 395public static IAsyncResult CreateAbandon(MsmqSessionReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqInputSessionChannelListener.cs (4)
119public override IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state) 124public override IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 213protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state) 252internal DoneAsyncResult(bool data, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqOutputChannel.cs (3)
62protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 113protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 129protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqOutputSessionChannel.cs (3)
142protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 172protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 188protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqQueue.cs (3)
728AsyncCallback callback, object state) 740AsyncCallback callback, object state) 765int action, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqReceiveContext.cs (5)
99protected override IAsyncResult OnBeginComplete(TimeSpan timeout, AsyncCallback callback, object state) 109protected override IAsyncResult OnBeginAbandon(TimeSpan timeout, AsyncCallback callback, object state) 127ReceiveContextAsyncResult(MsmqReceiveContext receiver, TimeSpan timeout, AsyncCallback callback, object state, Action<object> target) 141public static IAsyncResult CreateComplete(MsmqReceiveContext receiver, TimeSpan timeout, AsyncCallback callback, object state) 150public static IAsyncResult CreateAbandon(MsmqReceiveContext receiver, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MsmqReceiveHelper.cs (7)
254internal IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 289internal IAsyncResult BeginTryReceive(MsmqInputMessage msmqMessage, TimeSpan timeout, MsmqTransactionMode transactionMode, AsyncCallback callback, object state) 334TimeSpan timeout, MsmqTransactionMode transactionMode, AsyncCallback callback, object state) 386static AsyncCallback onCompleteStatic = Fx.ThunkCallback(new AsyncCallback(OnCompleteStatic)); 389internal TryNonTransactedReceiveAsyncResult(MsmqReceiveHelper receiver, MsmqInputMessage msmqMessage, TimeSpan timeout, AsyncCallback callback, object state) 441static AsyncCallback onCompleteStatic = Fx.ThunkCallback(new AsyncCallback(OnCompleteStatic)); 443public WaitForMessageAsyncResult(MsmqQueue msmqQueue, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\MtomMessageEncoder.cs (4)
373public override IAsyncResult BeginWriteMessage(Message message, Stream stream, AsyncCallback callback, object state) 378internal IAsyncResult BeginWriteMessage(Message message, Stream stream, string boundary, AsyncCallback callback, object state) 744public WriteMessageAsyncResult(Message message, Stream stream, MtomMessageEncoder encoder, AsyncCallback callback, object state) 756public WriteMessageAsyncResult(Message message, Stream stream, string boundary, MtomMessageEncoder encoder, AsyncCallback callback, object state)
System\ServiceModel\Channels\NamedPipeChannelListener.cs (5)
33protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 56protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 71public IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state) 82public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 99protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\OneWayChannelFactory.cs (14)
130protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 145protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 188protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 298protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 303protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 308protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 416protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 436AsyncCallback onReceive; 467protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 493protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 508protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 658static AsyncCallback onOpen; 659static AsyncCallback onInnerSend = Fx.ThunkCallback(new AsyncCallback(OnInnerSend)); 664AsyncCallback callback, object state)
System\ServiceModel\Channels\OneWayChannelListener.cs (26)
43protected override IAsyncResult OnBeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 59protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state) 163public IAsyncResult BeginReceive(AsyncCallback callback, object state) 168public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 194public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 209public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 224AsyncCallback callback, object state) 236protected override IAsyncResult OnBeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 252AsyncCallback callback, object state) 263protected override IAsyncResult OnBeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 281static AsyncCallback onReceiveRequest = Fx.ThunkCallback(new AsyncCallback(OnReceiveRequest)); 282static AsyncCallback onReply = Fx.ThunkCallback(new AsyncCallback(OnReply)); 285AsyncCallback callback, object state) 319protected abstract IAsyncResult OnBeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state); 511protected override IAsyncResult OnBeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 516protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state) 564public IAsyncResult BeginReceive(AsyncCallback callback, object state) 569public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 574public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 579public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 649static AsyncCallback onAcceptInnerChannel = Fx.ThunkCallback(new AsyncCallback(OnAcceptInnerChannel)); 650AsyncCallback onOpenInnerChannel; 1094protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1128protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1196protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1233static AsyncCallback onReceive = Fx.ThunkCallback(new AsyncCallback(OnReceive));
System\ServiceModel\Channels\OpaqueContent.cs (1)
52public IAsyncResult BeginWriteToStream(Stream stream, AsyncCallback callback, object state)
System\ServiceModel\Channels\OpenCollectionAsyncResult.cs (2)
15static AsyncCallback nestedCallback = Fx.ThunkCallback(new AsyncCallback(Callback)); 19public OpenCollectionAsyncResult(TimeSpan timeout, AsyncCallback otherCallback, object state, IList<ICommunicationObject> collection)
System\ServiceModel\Channels\OutputChannel.cs (3)
22public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 27public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 65protected abstract IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\PeerChannelFactory.cs (1)
121protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerChannelListener.cs (7)
195protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 220protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 295public IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state) 306public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 336protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 362protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 379protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerDuplexChannel.cs (3)
116protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 121protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 200protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerFlooder.cs (6)
139public virtual IAsyncResult BeginFloodEncodedMessage(byte[] id, MessageBuffer encodedMessage, TimeSpan timeout, AsyncCallback callback, object state) 161TimeSpan timeout, AsyncCallback callback, object state, int index, MessageHeader hopHeader) 249TimeSpan timeout, AsyncCallback callback, object state, 347public virtual IAsyncResult OnFloodedMessage(IPeerNeighbor neighbor, TFloodContract floodInfo, AsyncCallback callback, object state) 619public override IAsyncResult OnFloodedMessage(IPeerNeighbor neighbor, Message floodInfo, AsyncCallback callback, object state) 837public FloodAsyncResult(PeerNeighborManager owner, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerInputChannel.cs (4)
72protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 80IAsyncResult OnBeginCloseNode(TimeSpan timeout, AsyncCallback callback, object state) 85protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 93IAsyncResult OnBeginOpenNode(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerMaintainer.cs (2)
34IAsyncResult BeginOpenNeighbor(PeerNodeAddress to, TimeSpan timeout, AsyncCallback callback, object asyncState); 611IAsyncResult IPeerMaintainer.BeginOpenNeighbor(PeerNodeAddress address, TimeSpan timeout, AsyncCallback callback, object asyncState)
System\ServiceModel\Channels\PeerMessageDispatcher.cs (2)
95protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 135protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerNeighborManager.cs (10)
134public IAsyncResult BeginOpenNeighbor(PeerNodeAddress remoteAddress, TimeSpan timeout, AsyncCallback callback, object asyncState) 148internal IAsyncResult BeginOpenNeighborInternal(PeerNodeAddress remoteAddress, TimeSpan timeout, AsyncCallback callback, object asyncState) 997AsyncCallback callback, object asyncState) 1046AsyncCallback callback, object asyncState) 1057InstanceContext instanceContext, TimeSpan timeout, AsyncCallback callback, object state) 1081AsyncCallback callback, object asyncState) 1087TimeSpan timeout, AsyncCallback callback, object asyncState) 1412AsyncCallback onOpen; 1418AsyncCallback callback, object state) 1616PeerService service, ClosedCallback closedCallback, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerNodeImplementation.cs (5)
334public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 339public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state, bool waitForOnline) 374ITransportFactorySettings settings, TimeSpan timeout, AsyncCallback callback, object state, SecurityProtocol securityProtocol) 387AsyncCallback onFloodComplete = Fx.ThunkCallback(new AsyncCallback(result.OnFloodComplete)); 1807public SendAsyncResult(AsyncCallback callback, object state) : base(callback, state) { }
System\ServiceModel\Channels\PeerNodeStateManager.cs (6)
73public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 97public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state, bool waitForOnline) 223PeerNodeImplementation peerNode, TimeSpan timeout, AsyncCallback callback, object state) 302AsyncCallback callback, object state, bool waitForOnline) 388AsyncCallback callback; 395AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerOutputChannel.cs (3)
74protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 79protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 142protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerService.cs (2)
29IAsyncResult OnFloodedMessage(IPeerNeighbor neighbor, TFloodContract floodedInfo, AsyncCallback callback, object state); 295IAsyncResult IPeerServiceContract.BeginFloodMessage(Message floodedInfo, AsyncCallback callback, object state)
System\ServiceModel\Channels\PeerServiceMessageContracts.cs (1)
151IAsyncResult BeginFloodMessage(Message floodedInfo, AsyncCallback callback, object state);
System\ServiceModel\Channels\PipeConnection.cs (5)
1096public IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state) 1764public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state) 1894AsyncCallback callback, object state) 2001public IAsyncResult BeginAccept(AsyncCallback callback, object state) 2209AsyncCallback callback, object state)
System\ServiceModel\Channels\ReceiveContext.cs (9)
137public virtual IAsyncResult BeginAbandon(TimeSpan timeout, AsyncCallback callback, object state) 142public virtual IAsyncResult BeginAbandon(Exception exception, TimeSpan timeout, AsyncCallback callback, object state) 148public virtual IAsyncResult BeginComplete(TimeSpan timeout, AsyncCallback callback, object state) 247protected abstract IAsyncResult OnBeginAbandon(TimeSpan timeout, AsyncCallback callback, object state); 248protected virtual IAsyncResult OnBeginAbandon(Exception exception, TimeSpan timeout, AsyncCallback callback, object state) 254protected abstract IAsyncResult OnBeginComplete(TimeSpan timeout, AsyncCallback callback, object state); 417public AbandonAsyncResult(ReceiveContext receiveContext, Exception exception, TimeSpan timeout, AsyncCallback callback, object state) 524public CompleteAsyncResult(ReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state) 659public WaitAndContinueOperationAsyncResult(ReceiveContext receiveContext, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableChannelBinder.cs (55)
35AsyncCallback onCloseChannelComplete; 202public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, 209AsyncCallback callback, object state) 225AsyncCallback callback, object state) 230public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 263public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, 270AsyncCallback callback, object state) 279AsyncCallback callback, object state); 281public virtual IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, 288AsyncCallback callback, object state) 297AsyncCallback callback, object state) 669protected abstract IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, 671protected abstract IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, 675TimeSpan timeout, AsyncCallback callback, object state) 681AsyncCallback callback, object state) 1112public BinderCompletedAsyncResult(AsyncCallback callback, object state) 1275AsyncCallback callback, object state) 1282MaskingMode maskingMode, AsyncCallback callback, object state) 1289TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state) 1372AsyncCallback callback, object state) 2193static AsyncCallback onOpenComplete = Fx.ThunkCallback(new AsyncCallback(OnOpenComplete)); 2195static AsyncCallback onTryGetChannelComplete = Fx.ThunkCallback(new AsyncCallback(OnTryGetChannelComplete)); 2205AsyncCallback callback, object state) 2557public SynchronizerCompletedAsyncResult(AsyncCallback callback, object state) 2749static AsyncCallback onBinderCloseComplete = Fx.ThunkCallback(new AsyncCallback(OnBinderCloseComplete)); 2750static AsyncCallback onChannelCloseComplete = Fx.ThunkCallback(new AsyncCallback(OnChannelCloseComplete)); 2754TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, object state) 2933static AsyncCallback onInputComplete = Fx.ThunkCallback(new AsyncCallback(OnInputCompleteStatic)); 2934static AsyncCallback onTryGetChannelComplete = Fx.ThunkCallback(new AsyncCallback(OnTryGetChannelCompleteStatic)); 2939MaskingMode maskingMode, AsyncCallback callback, object state) 2949TimeSpan timeout, AsyncCallback callback, object state); 3223protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state) 3243static AsyncCallback onSend; 3246public ReplyAsyncResult(MessageRequestContext context, Message message, TimeSpan timeout, AsyncCallback callback, object state) 3309static AsyncCallback onTryGetChannelComplete = Fx.ThunkCallback(new AsyncCallback(OnTryGetChannelCompleteStatic)); 3310static AsyncCallback onOutputComplete = Fx.ThunkCallback(new AsyncCallback(OnOutputCompleteStatic)); 3314public OutputAsyncResult(TBinder binder, AsyncCallback callback, object state) 3329Message message, TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, 3544AsyncCallback callback, object state) 3652public SendAsyncResult(ReliableChannelBinder<TChannel> binder, AsyncCallback callback, 3660AsyncCallback callback, object state) 3688MaskingMode maskingMode, AsyncCallback callback, object state) 3696TChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 3730TimeSpan timeout, AsyncCallback callback, object state) 3738TimeSpan timeout, AsyncCallback callback, object state) 3900static AsyncCallback onChannelCloseCompleteStatic = 3903static AsyncCallback onInputCompleteStatic = 3905static AsyncCallback onWaitForPendingOperationsCompleteStatic = 3915TimeSpan timeout, AsyncCallback callback, object state) 3952protected abstract IAsyncResult BeginTryInput(TimeSpan timeout, AsyncCallback callback, 4180static AsyncCallback onCloseOutputSessionCompleteStatic = 4186TimeSpan timeout, AsyncCallback callback, object state) 4201protected override IAsyncResult BeginTryInput(TimeSpan timeout, AsyncCallback callback, object state) 4260TimeSpan timeout, AsyncCallback callback, object state) 4267protected override IAsyncResult BeginTryInput(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableChannelFactory.cs (2)
132protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 151protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableChannelListener.cs (20)
163protected virtual IAsyncResult BeginCloseInnerListener(TimeSpan timeout, AsyncCallback callback, object state) 193protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, 212protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, 266UniqueId outputId, TimeSpan timeout, AsyncCallback callback, object state) 319static AsyncCallback onBaseChannelListenerCloseComplete = 321static AsyncCallback onInnerChannelListenerCloseComplete = 326OperationEndCallback baseEndClose, TimeSpan timeout, AsyncCallback callback, 462static AsyncCallback onInnerChannelListenerCloseComplete = 467UniqueId outputId, TimeSpan timeout, AsyncCallback callback, object state) 550static AsyncCallback onAcceptCompleted = Fx.ThunkCallback(new AsyncCallback(OnAcceptCompletedStatic)); 938AsyncCallback onTryReceiveComplete; 1052protected abstract IAsyncResult BeginTryReceiveItem(TInnerChannel channel, AsyncCallback callback, object state); 1173protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1227protected override IAsyncResult BeginCloseInnerListener(TimeSpan timeout, AsyncCallback callback, object state) 1294protected override IAsyncResult BeginTryReceiveItem(IDuplexChannel channel, AsyncCallback callback, object state) 1332protected override IAsyncResult BeginTryReceiveItem(IReplyChannel channel, AsyncCallback callback, object state) 1369AsyncCallback onReceiveComplete; 1421protected abstract IAsyncResult BeginTryReceiveItem(TInnerChannel channel, AsyncCallback callback, object state); 1586protected override IAsyncResult BeginTryReceiveItem(IDuplexSessionChannel channel, AsyncCallback callback, object state) 1624protected override IAsyncResult BeginTryReceiveItem(IReplySessionChannel channel, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableDuplexSessionChannel.cs (20)
27static AsyncCallback onReceiveCompleted = Fx.ThunkCallback(new AsyncCallback(OnReceiveCompletedStatic)); 114IAsyncResult BeginCloseBinder(TimeSpan timeout, AsyncCallback callback, 127IAsyncResult BeginCloseSequence(TimeSpan timeout, AsyncCallback callback, object state) 260IAsyncResult BeginInternalCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 748protected IAsyncResult OnBeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 795protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 865protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 870IAsyncResult OnBeginSendHandler(MessageAttemptInfo attemptInfo, TimeSpan timeout, bool maskUnhandledException, AsyncCallback callback, object state) 903IAsyncResult OnBeginSendAckRequestedHandler(TimeSpan timeout, AsyncCallback callback, object state) 1349IAsyncResult BeginTerminateSequence(TimeSpan timeout, AsyncCallback callback, object state) 1464static AsyncCallback onReconnectComplete = Fx.ThunkCallback(new AsyncCallback(OnReconnectComplete)); 1520protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1527protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1732public IAsyncResult BeginCloseOutputSession(AsyncCallback callback, object state) 1737public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 1797IAsyncResult BeginUnregisterChannel(TimeSpan timeout, AsyncCallback callback, object state) 1817protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, 1851protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1939public IAsyncResult BeginCloseOutputSession(AsyncCallback callback, object state) 1944public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableInputConnection.cs (1)
239public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableInputSessionChannel.cs (6)
23static AsyncCallback onReceiveCompleted = Fx.ThunkCallback(new AsyncCallback(OnReceiveCompletedStatic)); 183IAsyncResult BeginCloseBinder(TimeSpan timeout, AsyncCallback callback, object state) 188protected virtual IAsyncResult BeginCloseGuards(TimeSpan timeout, AsyncCallback callback, object state) 193IAsyncResult BeginUnregisterChannel(TimeSpan timeout, AsyncCallback callback, object state) 279protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 455protected override IAsyncResult BeginCloseGuards(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableMessagingHelpers.cs (43)
17delegate IAsyncResult OperationWithTimeoutBeginCallback(TimeSpan timeout, AsyncCallback asyncCallback, object asyncState); 24AsyncCallback callback, object state) 46static AsyncCallback onOperationCompleted = Fx.ThunkCallback(new AsyncCallback(OnOperationCompletedStatic)); 50AsyncCallback callback, object state) 176public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 478public IAsyncResult BeginWait(TimeSpan timeout, AsyncCallback callback, object state) 483public IAsyncResult BeginWait(TimeSpan timeout, bool throwTimeoutException, AsyncCallback callback, object state) 515public IAsyncResult BeginTryWait(TimeSpan timeout, AsyncCallback callback, object state) 680public abstract IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state); 692AsyncCallback onBinderCloseComplete; 693AsyncCallback onSendFaultComplete; 773public override IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 782AsyncCallback callback, object asyncState); 1020public AlreadyClosedAsyncResult(AsyncCallback callback, object state) 1060TimeSpan timeout, AsyncCallback callback, object state) 1095TimeSpan timeout, AsyncCallback callback, object state) 1115static AsyncCallback onBinderCloseComplete = Fx.ThunkCallback(new AsyncCallback(OnBinderCloseComplete)); 1116static AsyncCallback onComposeAsyncOperationsComplete = Fx.ThunkCallback(new AsyncCallback(OnComposeAsyncOperationsComplete)); 1121AsyncCallback callback, object state) 1219static AsyncCallback onBinderOpenComplete = Fx.ThunkCallback(new AsyncCallback(OnBinderOpenComplete)); 1220static AsyncCallback onSessionOpenComplete = Fx.ThunkCallback(new AsyncCallback(OnSessionOpenComplete)); 1225ChannelReliableSession session, TimeSpan timeout, AsyncCallback callback, object state) 1581AsyncCallback callback, object state); 1643public IAsyncResult BeginRequest(TimeSpan timeout, AsyncCallback callback, object state) 1680static AsyncCallback requestCallback = Fx.ThunkCallback(new AsyncCallback(RequestCallback)); 1681static AsyncCallback waitCallback = Fx.ThunkCallback(new AsyncCallback(RequestAsyncResult.WaitCallback)); 1689public RequestAsyncResult(ReliableRequestor requestor, TimeSpan timeout, AsyncCallback callback, object state) 1912protected override IAsyncResult OnBeginRequest(Message request, TimeSpan timeout, AsyncCallback callback, object state) 1972protected override IAsyncResult OnBeginRequest(Message request, TimeSpan timeout, AsyncCallback callback, object state) 1989static AsyncCallback sendCallback = Fx.ThunkCallback(new AsyncCallback(SendCallback)); 1990static AsyncCallback tryReceiveCallback = Fx.ThunkCallback(new AsyncCallback(TryReceiveCallback)); 1998AsyncCallback callback, object state) 2186protected override IAsyncResult OnBeginRequest(Message request, TimeSpan timeout, AsyncCallback callback, object state) 2206IAsyncResult BeginSend(TimeSpan timeout, AsyncCallback callback, object state) 2238IAsyncResult BeginWait(TimeSpan timeout, AsyncCallback callback, object state) 2256static AsyncCallback operationCallback = Fx.ThunkCallback(new AsyncCallback(OperationCallback)); 2259protected ReliableOutputAsyncResult(AsyncCallback callback, object state) 2357protected abstract IAsyncResult BeginOperation(TimeSpan timeout, AsyncCallback callback, object state); 2408public ReliableBinderSendAsyncResult(AsyncCallback callback, object state) 2425protected override IAsyncResult BeginOperation(TimeSpan timeout, AsyncCallback callback, 2441public ReliableBinderRequestAsyncResult(AsyncCallback callback, object state) 2469protected override IAsyncResult BeginOperation(TimeSpan timeout, AsyncCallback callback, 2493public WaitAsyncResult(TimeSpan timeout, bool throwTimeoutException, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableOutputConnection.cs (10)
10delegate IAsyncResult BeginSendHandler(MessageAttemptInfo attemptInfo, TimeSpan timeout, bool maskUnhandledException, AsyncCallback asyncCallback, object state); 27static AsyncCallback onSendRetriesComplete = Fx.ThunkCallback(new AsyncCallback(OnSendRetriesComplete)); 28static AsyncCallback onSendRetryComplete = Fx.ThunkCallback(new AsyncCallback(OnSendRetryComplete)); 184public IAsyncResult BeginAddMessage(Message message, TimeSpan timeout, object state, AsyncCallback callback, object asyncState) 194IAsyncResult BeginCompleteTransfer(TimeSpan timeout, AsyncCallback callback, object state) 244public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 621static AsyncCallback addCompleteStatic = Fx.ThunkCallback(new AsyncCallback(AddComplete)); 624static AsyncCallback sendCompleteStatic = Fx.ThunkCallback(new AsyncCallback(SendComplete)); 629ReliableOutputConnection connection, AsyncCallback callback, object asyncState) 823public AlreadyCompletedTransferAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableOutputSessionChannel.cs (14)
118IAsyncResult BeginCloseSequence(TimeSpan timeout, AsyncCallback callback, object state) 225protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 249protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 255protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 314bool maskUnhandledException, AsyncCallback callback, object state); 327IAsyncResult OnConnectionBeginSendAckRequestedHandler(TimeSpan timeout, AsyncCallback callback, object state) 363IAsyncResult OnConnectionBeginSendHandler(MessageAttemptInfo attemptInfo, TimeSpan timeout, bool maskUnhandledException, AsyncCallback callback, object state) 392AsyncCallback callback, object state); 695IAsyncResult BeginTerminateSequence(TimeSpan timeout, AsyncCallback callback, object state) 825TimeSpan timeout, bool maskUnhandledException, AsyncCallback callback, object state) 871AsyncCallback callback, object state) 902static AsyncCallback onReceiveCompleted = Fx.ThunkCallback(new AsyncCallback(OnReceiveCompletedStatic)); 957TimeSpan timeout, bool maskUnhandledException, AsyncCallback callback, object state) 995AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableReplySessionChannel.cs (15)
35static AsyncCallback onReceiveCompleted = Fx.ThunkCallback(new AsyncCallback(OnReceiveCompletedStatic)); 198IAsyncResult BeginCloseBinder(TimeSpan timeout, AsyncCallback callback, object state) 203IAsyncResult BeginCloseOutput(TimeSpan timeout, AsyncCallback callback, object state) 226IAsyncResult BeginUnregisterChannel(TimeSpan timeout, AsyncCallback callback, object state) 432protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1268IAsyncResult BeginTerminateSequence(TimeSpan timeout, AsyncCallback callback, object state) 1338public CloseOutputCompletedAsyncResult(AsyncCallback callback, object state) 1402internal IAsyncResult BeginReplyInternal(Message reply, TimeSpan timeout, AsyncCallback callback, object state) 1508protected override IAsyncResult OnBeginReply(Message reply, TimeSpan timeout, AsyncCallback callback, object state) 1637public ReplyCompletedAsyncResult(AsyncCallback callback, object state) 1649static AsyncCallback replyCompleteStatic = Fx.ThunkCallback(new AsyncCallback(ReplyCompleteStatic)); 1651public ReplyAsyncResult(ReliableRequestContext thisContext, TimeSpan timeout, AsyncCallback callback, object state) 1803IAsyncResult BeginReply(TimeSpan timeout, AsyncCallback callback, object state) 1913internal IAsyncResult BeginWaitAndReply(TimeSpan timeout, AsyncCallback callback, object state) 1936internal ReplyCompletedAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Channels\ReliableRequestSessionChannel.cs (12)
19static AsyncCallback onPollingComplete = Fx.ThunkCallback(new AsyncCallback(OnPollingComplete)); 77IAsyncResult BeginCloseBinder(TimeSpan timeout, AsyncCallback callback, object state) 82IAsyncResult BeginTerminateSequence(TimeSpan timeout, AsyncCallback callback, object state) 95IAsyncResult BeginCloseSequence(TimeSpan timeout, AsyncCallback callback, object state) 125protected override IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state) 251protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 276protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 335bool maskUnhandledException, AsyncCallback callback, object state) 454IAsyncResult OnConnectionBeginSendAckRequested(TimeSpan timeout, AsyncCallback callback, object state) 771IAsyncResult BeginSendAckRequestedMessage(TimeSpan timeout, MaskingMode maskingMode, AsyncCallback callback, 850IAsyncResult BeginWaitForShutdown(TimeSpan timeout, AsyncCallback callback, object state) 1055public AsyncRequest(ReliableRequestSessionChannel parent, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyAdapterChannelListener.cs (8)
39protected override IAsyncResult OnBeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 55protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state) 133public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 138public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 160public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 182public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state) 259public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state) 264public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ReplyChannel.cs (8)
42protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 71internal static IAsyncResult HelpBeginReceiveRequest(IReplyChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 85static AsyncCallback onReceiveRequest = Fx.ThunkCallback(new AsyncCallback(OnReceiveRequest)); 88public HelpReceiveRequestAsyncResult(IReplyChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 176public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 181public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 208public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 233public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\RequestChannel.cs (5)
76protected IAsyncResult BeginWaitForPendingRequests(TimeSpan timeout, AsyncCallback callback, object state) 212public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) 217public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 250protected abstract IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state); 364public WaitForPendingRequestsAsyncResult(TimeSpan timeout, RequestChannel requestChannel, IRequestBase[] pendingRequests, AsyncCallback callback, object state)
System\ServiceModel\Channels\RequestContext.cs (2)
19public abstract IAsyncResult BeginReply(Message message, AsyncCallback callback, object state); 20public abstract IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Channels\RequestContextBase.cs (3)
195protected abstract IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state); 232public override IAsyncResult BeginReply(Message message, AsyncCallback callback, object state) 237public override IAsyncResult BeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelFactory.cs (17)
157protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 259protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 356protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 425static readonly AsyncCallback openInnerChannelCallback = Fx.ThunkCallback(new AsyncCallback(OpenInnerChannelCallback)); 426static readonly AsyncCallback openSecurityProtocolCallback = Fx.ThunkCallback(new AsyncCallback(OpenSecurityProtocolCallback)); 429AsyncCallback callback, object state) 547public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 552public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 602public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) 607public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 739public IAsyncResult BeginReceive(AsyncCallback callback, object state) 744public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 754public virtual IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 832public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 870AsyncCallback callback, object state) 877protected override IAsyncResult BeginSendCore(IRequestChannel channel, Message message, TimeSpan timeout, AsyncCallback callback, object state) 904public ClientDuplexReceiveMessageAndVerifySecurityAsyncResult(SecurityDuplexChannel channel, IDuplexChannel innerChannel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SecurityChannelListener.cs (40)
229protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 247IAsyncResult OnBeginCloseSharedState(TimeSpan timeout, AsyncCallback callback, object state) 257internal IAsyncResult OnBeginOpenListenerState(TimeSpan timeout, AsyncCallback callback, object state) 267protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 536static AsyncCallback lifetimeManagerCloseCallback = Fx.ThunkCallback(new AsyncCallback(LifetimeManagerCloseCallback)); 539public CloseSharedStateAsyncResult(SecurityChannelListener<TChannel> securityListener, TimeSpan timeout, AsyncCallback callback, object state) 588static AsyncCallback lifetimeManagerOpenCallback = Fx.ThunkCallback(new AsyncCallback(LifetimeManagerOpenCallback)); 591public OpenListenerStateAsyncResult(SecurityChannelListener<TChannel> securityListener, TimeSpan timeout, AsyncCallback callback, object state) 694protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 756protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 766IAsyncResult OnBeginCloseSharedState(TimeSpan timeout, AsyncCallback callback, object state) 843static AsyncCallback lifetimeManagerCloseCallback = Fx.ThunkCallback(new AsyncCallback(LifetimeManagerCloseCallback)); 846public CloseSharedStateAsyncResult(ServerSecurityChannel<UChannel> securityChannel, TimeSpan timeout, AsyncCallback callback, object state) 916public IAsyncResult BeginReceive(AsyncCallback callback, object state) 921public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 931public virtual IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 997public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 1046public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 1051public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1176public override IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 1228public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 1233public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 1243public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 1370public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state) 1420protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1458AsyncCallback callback, object state, SecurityProtocolCorrelationState correlationState) 1464protected override IAsyncResult BeginSendCore(RequestContext context, Message message, TimeSpan timeout, AsyncCallback callback, object state) 1490static AsyncCallback innerTryReceiveCompletedCallback = Fx.ThunkCallback(new AsyncCallback(InnerTryReceiveCompletedCallback)); 1498public ReceiveItemAndVerifySecurityAsyncResult(ServerSecurityChannel<UChannel> channel, TimeSpan timeout, AsyncCallback callback, object state) 1542protected abstract IAsyncResult BeginTryReceiveItem(TimeSpan timeout, AsyncCallback callback, object state); 1546protected abstract IAsyncResult BeginSendFault(TItem innerItem, Message faultMessage, TimeSpan timeout, AsyncCallback callback, object state); 1789public ReceiveRequestAndVerifySecurityAsyncResult(SecurityReplyChannel channel, IReplyChannel innerChannel, TimeSpan timeout, AsyncCallback callback, object state) 1828protected override IAsyncResult BeginTryReceiveItem(TimeSpan timeout, AsyncCallback callback, object state) 1852protected override IAsyncResult BeginSendFault(RequestContext innerItem, Message faultMessage, TimeSpan timeout, AsyncCallback callback, object state) 1875public DuplexSessionReceiveMessageAndVerifySecurityAsyncResult(SecurityDuplexSessionChannel channel, IDuplexChannel innerChannel, TimeSpan timeout, AsyncCallback callback, object state) 1911protected override IAsyncResult BeginTryReceiveItem(TimeSpan timeout, AsyncCallback callback, object state) 1940protected override IAsyncResult BeginSendFault(Message innerItem, Message faultMessage, TimeSpan timeout, AsyncCallback callback, object state) 1964public InputChannelReceiveMessageAndVerifySecurityAsyncResult(SecurityInputChannel channel, IInputChannel innerChannel, TimeSpan timeout, AsyncCallback callback, object state) 2005protected override IAsyncResult BeginTryReceiveItem(TimeSpan timeout, AsyncCallback callback, object state) 2031protected override IAsyncResult BeginSendFault(Message innerItem, Message faultMessage, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServerReliableChannelBinder.cs (15)
20static AsyncCallback onAcceptChannelComplete = Fx.ThunkCallback(new AsyncCallback(OnAcceptChannelCompleteStatic)); 144AsyncCallback callback, object state) 149public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, 392protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, 405protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, 419AsyncCallback callback, object state); 699TimeSpan timeout, AsyncCallback callback, object state) 705TimeSpan timeout, AsyncCallback callback, object state) 711TimeSpan timeout, AsyncCallback callback, object state) 840TimeSpan timeout, AsyncCallback callback, object state) 912TimeSpan timeout, AsyncCallback callback, object state) 918TimeSpan timeout, AsyncCallback callback, object state) 1030TimeSpan timeout, AsyncCallback callback, object state) 1067TimeSpan timeout, AsyncCallback callback, object state) 1076AsyncCallback callback, object state)
System\ServiceModel\Channels\ServerWebSocketTransportDuplexSessionChannel.cs (1)
110protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannel.cs (23)
500IAsyncResult BeginEnsureDisplayUI(AsyncCallback callback, object state) 539IAsyncResult BeginEnsureOpened(TimeSpan timeout, AsyncCallback callback, object state) 729internal static IAsyncResult BeginCall(ServiceChannel channel, ProxyOperationRuntime operation, object[] ins, AsyncCallback callback, object asyncState) 736internal IAsyncResult BeginCall(string action, bool oneway, ProxyOperationRuntime operation, object[] ins, AsyncCallback callback, object asyncState) 741internal IAsyncResult BeginCall(string action, bool oneway, ProxyOperationRuntime operation, object[] ins, TimeSpan timeout, AsyncCallback callback, object asyncState) 1284public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 1289public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1311public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) 1316public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1363protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1402protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1626IAsyncResult IDuplexContextChannel.BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 1784public IAsyncResult BeginDisplayInitializationUI(AsyncCallback callback, object state) 1893static AsyncCallback ensureInteractiveInitCallback = Fx.ThunkCallback(EnsureInteractiveInitCallback); 1894static AsyncCallback ensureOpenCallback = Fx.ThunkCallback(EnsureOpenCallback); 1895static AsyncCallback sendCallback = Fx.ThunkCallback(SendCallback); 1899AsyncCallback userCallback, object userState) 2150IAsyncResult BeginCall(ServiceChannel channel, TimeSpan timeout, AsyncCallback callback, object state); 2185IAsyncResult ICallOnce.BeginCall(ServiceChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 2218IAsyncResult ICallOnce.BeginCall(ServiceChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 2300AsyncCallback callback, object state) 2509AsyncCallback callback, object state) 2558internal CallOnceCompletedAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannelFactory.cs (3)
275protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 453protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 470protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\ServiceChannelProxy.cs (2)
209static readonly Func<ServiceChannel, ProxyOperationRuntime, object[], AsyncCallback, object, IAsyncResult> beginCallDelegate = ServiceChannel.BeginCall; 339AsyncCallback callback;
System\ServiceModel\Channels\SessionConnectionReader.cs (4)
45static AsyncCallback onValidate; 592protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 669static AsyncCallback onUpgradeConnection; 672AsyncCallback callback, object state)
System\ServiceModel\Channels\SharedConnectionListener.cs (9)
72IAsyncResult IConnectionListener.BeginAccept(AsyncCallback callback, object state) 767IAsyncResult BeginValidateUriRoute(Uri uri, IPAddress address, int port, AsyncCallback callback, object state) 800static AsyncCallback onValidateUriRoute; 808public ValidateUriRouteAsyncResult(SharedListenerProxy proxy, Uri uri, IPAddress address, int port, AsyncCallback callback, object state) 1021public override IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state) 1061public override IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state) 1371IAsyncResult IConnectionDuplicator.BeginDuplicate(DuplicateContext duplicateContext, AsyncCallback callback, object state) 1460public DuplicateConnectionAsyncResult(IConnection connection, AsyncCallback callback, object state) 1466public DuplicateConnectionAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Channels\SharedHttpTransportManager.cs (2)
24AsyncCallback onGetContext; 25AsyncCallback onContextReceived;
System\ServiceModel\Channels\SingletonChannelAcceptor.cs (1)
31public override IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SingletonConnectionReader.cs (12)
49static AsyncCallback onValidate; 299public IAsyncResult BeginCompletePreamble(TimeSpan timeout, AsyncCallback callback, object state) 313static AsyncCallback onUpgradeComplete = Fx.ThunkCallback(OnUpgradeComplete); 322public CompletePreambleAsyncResult(TimeSpan timeout, ServerSingletonPreambleConnectionReader parent, AsyncCallback callback, object state) 1178public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 1272public ReceiveAsyncResult(SingletonConnectionReader parent, TimeSpan timeout, AsyncCallback callback, 1349protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1573public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1589byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1663AsyncCallback callback, object state) 1692public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1729AsyncCallback callback, object state)
System\ServiceModel\Channels\SocketConnection.cs (7)
24static AsyncCallback onReceiveCompleted; 671public IAsyncResult BeginValidate(Uri uri, AsyncCallback callback, object state) 1751public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state) 1792static AsyncCallback onConnect = Fx.ThunkCallback(new AsyncCallback(OnConnect)); 1794public ConnectAsyncResult(Uri uri, TimeSpan timeout, AsyncCallback callback, object state) 2007public IAsyncResult BeginAccept(AsyncCallback callback, object state) 2171public AcceptAsyncResult(SocketConnectionListener listener, AsyncCallback callback, object state)
System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (24)
272protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 322protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 336AsyncCallback onOpenTokenAuthenticator; 337AsyncCallback onOpenTokenProvider; 338AsyncCallback onGetToken; 339AsyncCallback onCloseTokenProvider; 342AsyncCallback callback, object state) 630protected override IAsyncResult OnBeginAcceptUpgrade(Stream stream, AsyncCallback callback, object state) 701public AcceptUpgradeAsyncResult(SslStreamSecurityUpgradeAcceptor acceptor, AsyncCallback callback, 708protected override IAsyncResult OnBegin(Stream stream, AsyncCallback callback) 826IAsyncResult BaseBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 836internal override IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 857IAsyncResult BaseBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 867internal override IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 887protected override IAsyncResult OnBeginInitiateUpgrade(Stream stream, AsyncCallback callback, object state) 988public InitiateUpgradeAsyncResult(SslStreamSecurityUpgradeInitiator initiator, AsyncCallback callback, 1001protected override IAsyncResult OnBeginAuthenticateAsClient(Stream stream, AsyncCallback callback) 1060AsyncCallback onBaseOpen; 1061AsyncCallback onOpenTokenProvider; 1062AsyncCallback onGetClientToken; 1065AsyncCallback callback, object state) 1233AsyncCallback onBaseClose; 1234AsyncCallback onCloseTokenProvider; 1237AsyncCallback callback, object state)
System\ServiceModel\Channels\StreamedFramingRequestChannel.cs (11)
40protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 78protected override IAsyncRequest CreateAsyncRequest(Message message, AsyncCallback callback, object state) 144protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 188protected override IAsyncResult BeginAcceptPooledConnection(IConnection connection, ref TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 210static AsyncCallback onUpgrade; 211static AsyncCallback onFailedUpgrade; 215ref TimeoutHelper timeoutHelper, ClientFramingDecoder decoder, AsyncCallback callback, object state) 624static AsyncCallback onEstablishConnection = Fx.ThunkCallback(new AsyncCallback(OnEstablishConnection)); 625static AsyncCallback onWriteMessage = Fx.ThunkCallback(new AsyncCallback(OnWriteMessage)); 626static AsyncCallback onReceiveReply = Fx.ThunkCallback(new AsyncCallback(OnReceiveReply)); 629public StreamedFramingAsyncRequest(StreamedFramingRequestChannel channel, AsyncCallback callback, object state)
System\ServiceModel\Channels\StreamSecurityUpgradeAcceptorAsyncResult.cs (3)
17static AsyncCallback onAuthenticateAsServer = Fx.ThunkCallback(new AsyncCallback(OnAuthenticateAsServer)); 19protected StreamSecurityUpgradeAcceptorAsyncResult(AsyncCallback callback, object state) 105protected abstract IAsyncResult OnBegin(Stream stream, AsyncCallback callback);
System\ServiceModel\Channels\StreamSecurityUpgradeAcceptorBase.cs (2)
46public override IAsyncResult BeginAcceptUpgrade(Stream stream, AsyncCallback callback, object state) 84protected abstract IAsyncResult OnBeginAcceptUpgrade(Stream stream, AsyncCallback callback, object state);
System\ServiceModel\Channels\StreamSecurityUpgradeInitiatorAsyncResult.cs (3)
17static AsyncCallback onAuthenticateAsClient = Fx.ThunkCallback(new AsyncCallback(OnAuthenticateAsClient)); 19public StreamSecurityUpgradeInitiatorAsyncResult(AsyncCallback callback, object state) 109protected abstract IAsyncResult OnBeginAuthenticateAsClient(Stream stream, AsyncCallback callback);
System\ServiceModel\Channels\StreamSecurityUpgradeInitiatorBase.cs (2)
42public override IAsyncResult BeginInitiateUpgrade(Stream stream, AsyncCallback callback, object state) 126protected abstract IAsyncResult OnBeginInitiateUpgrade(Stream stream, AsyncCallback callback, object state);
System\ServiceModel\Channels\StreamUpgradeAcceptor.cs (1)
21public abstract IAsyncResult BeginAcceptUpgrade(Stream stream, AsyncCallback callback, object state);
System\ServiceModel\Channels\StreamUpgradeInitiator.cs (3)
18public abstract IAsyncResult BeginInitiateUpgrade(Stream stream, AsyncCallback callback, object state); 21internal virtual IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 31internal virtual IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\SynchronizedMessageSource.cs (5)
22public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 52public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 91AsyncCallback callback, object state) 204AsyncCallback callback, object state) 248AsyncCallback callback, object state)
System\ServiceModel\Channels\TcpChannelListener.cs (5)
40protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 57protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 78public IAsyncResult BeginAcceptChannel(AsyncCallback callback, object state) 89public IAsyncResult BeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 106protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TextMessageEncoder.cs (2)
549public override IAsyncResult BeginWriteMessage(Message message, Stream stream, AsyncCallback callback, object state) 575public WriteMessageAsyncResult(Message message, Stream stream, TextMessageEncoder textEncoder, AsyncCallback callback, object state)
System\ServiceModel\Channels\TimeoutStream.cs (2)
34public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 40public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Channels\TracingConnectionInitiator.cs (1)
44public IAsyncResult BeginConnect(Uri uri, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TracingConnectionListener.cs (1)
67public IAsyncResult BeginAccept(AsyncCallback callback, object state)
System\ServiceModel\Channels\TransactionChannelFactory.cs (4)
241public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 246public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback asyncCallback, object state) 298public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) 303public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback asyncCallback, object state)
System\ServiceModel\Channels\TransactionChannelListener.cs (14)
203protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state) 288public IAsyncResult BeginReceive(AsyncCallback callback, object state) 293public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 303public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 343public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 383public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 388public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 398public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 477public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state) 561public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 566public virtual IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback asyncCallback, object state) 600static AsyncCallback innerCallback = Fx.ThunkCallback(new AsyncCallback(Callback)); 602internal ReceiveTimeoutAsyncResult(TimeSpan timeout, AsyncCallback callback, object state) 613internal AsyncCallback InnerCallback
System\ServiceModel\Channels\TransmissionStrategy.cs (4)
256public IAsyncResult BeginAdd(Message message, TimeSpan timeout, object state, AsyncCallback callback, object asyncState) 261public IAsyncResult BeginAddLast(Message message, TimeSpan timeout, object state, AsyncCallback callback, object asyncState) 500IAsyncResult InternalBeginAdd(Message message, bool isLast, TimeSpan timeout, object state, AsyncCallback callback, object asyncState) 851public AsyncQueueAdder(Message message, bool isLast, TimeSpan timeout, object state, TransmissionStrategy strategy, AsyncCallback callback, object asyncState)
System\ServiceModel\Channels\TransportChannelFactory.cs (1)
141protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportChannelListener.cs (2)
414protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 452protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportDuplexSessionChannel.cs (16)
140public IAsyncResult BeginReceive(AsyncCallback callback, object state) 145public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 209public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 263public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 329protected IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 420protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 552protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 668public IAsyncResult BeginCloseOutputSession(AsyncCallback callback, object state) 673public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 696static AsyncCallback onCloseOutputSession = Fx.ThunkCallback(new AsyncCallback(OnCloseOutputSession)); 697static AsyncCallback onCloseInputSession = Fx.ThunkCallback(new AsyncCallback(OnCloseInputSession)); 702public CloseAsyncResult(TransportDuplexSessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 883public CloseOutputSessionAsyncResult(TransportDuplexSessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 1043public SendAsyncResult(TransportDuplexSessionChannel channel, Message message, TimeSpan timeout, bool streamedOutput, AsyncCallback callback, object state) 1226static AsyncCallback onReceive = Fx.ThunkCallback(new AsyncCallback(OnReceive)); 1231public TryReceiveAsyncResult(TransportDuplexSessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportManager.cs (5)
219AsyncCallback callback, object state) 253public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 322protected OpenOrCloseAsyncResult(TransportManagerContainer parent, AsyncCallback callback, 369public CloseAsyncResult(TransportManagerContainer parent, AsyncCallback callback, TimeSpan timeout, 394AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportReplyChannelAcceptor.cs (4)
41IAsyncResult DummyBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 51protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 136IAsyncResult DummyBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 146protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\TransportSecurityHelpers.cs (7)
222AsyncCallback callback, object state) 228AsyncCallback callback, object state) 473AsyncCallback callback, object state) 560static AsyncCallback onGetToken = Fx.ThunkCallback(new AsyncCallback(OnGetToken)); 564AsyncCallback callback, object state) 633static AsyncCallback onGetToken; 637AsyncCallback callback, object state)
System\ServiceModel\Channels\WebSocketTransportDuplexSessionChannel.cs (3)
24static AsyncCallback streamedWriteCallback = Fx.ThunkCallback(StreamWriteCallback); 1157public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 1328public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Channels\WindowsStreamSecurityUpgradeProvider.cs (19)
140protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 161protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 230protected override IAsyncResult OnBeginAcceptUpgrade(Stream stream, AsyncCallback callback, object state) 276public AcceptUpgradeAsyncResult(WindowsStreamSecurityUpgradeAcceptor acceptor, AsyncCallback callback, 283protected override IAsyncResult OnBegin(Stream stream, AsyncCallback callback) 321IAsyncResult BaseBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 331internal override IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 350IAsyncResult BaseBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 360internal override IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 377protected override IAsyncResult OnBeginInitiateUpgrade(Stream stream, AsyncCallback callback, object state) 501AsyncCallback callback, object state) 507protected override IAsyncResult OnBeginAuthenticateAsClient(Stream stream, AsyncCallback callback) 536AsyncCallback onBaseOpen; 537AsyncCallback onOpenTokenProvider; 538AsyncCallback onGetSspiCredential; 541AsyncCallback callback, object state) 702AsyncCallback onBaseClose; 703AsyncCallback onCloseTokenProvider; 706AsyncCallback callback, object state)
System\ServiceModel\ClientBase.cs (20)
56static AsyncCallback onAsyncCallCompleted = Fx.ThunkCallback(new AsyncCallback(OnAsyncCallCompleted)); 703IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state) 708IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 718IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state) 723IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 735internal IAsyncResult BeginFactoryOpen(TimeSpan timeout, AsyncCallback callback, object state) 759internal IAsyncResult BeginChannelOpen(TimeSpan timeout, AsyncCallback callback, object state) 769internal IAsyncResult BeginFactoryClose(TimeSpan timeout, AsyncCallback callback, object state) 793internal IAsyncResult BeginChannelClose(TimeSpan timeout, AsyncCallback callback, object state) 960protected delegate IAsyncResult BeginOperationDelegate(object[] inValues, AsyncCallback asyncCallback, object state); 1128protected IAsyncResult BeginInvoke(string methodName, object[] args, AsyncCallback callback, object state) 1201IAsyncResult IClientChannel.BeginDisplayInitializationUI(AsyncCallback callback, object state) 1303IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state) 1308IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1328IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state) 1333IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1373IAsyncResult IOutputChannel.BeginSend(Message message, AsyncCallback callback, object state) 1378IAsyncResult IOutputChannel.BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1408IAsyncResult IRequestChannel.BeginRequest(Message message, AsyncCallback callback, object state) 1413IAsyncResult IRequestChannel.BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Description\ClientClassGenerator.cs (1)
50static Type asyncCallbackType = typeof(AsyncCallback);
System\ServiceModel\Description\IMetadataExchange.cs (1)
16IAsyncResult BeginGet(Message request, AsyncCallback callback, object state);
System\ServiceModel\Description\MetadataExchangeClient.cs (10)
254public IAsyncResult BeginGetMetadata(AsyncCallback callback, object asyncState) 263public IAsyncResult BeginGetMetadata(Uri address, MetadataExchangeClientMode mode, AsyncCallback callback, object asyncState) 276public IAsyncResult BeginGetMetadata(EndpointAddress address, AsyncCallback callback, object asyncState) 284IAsyncResult BeginGetMetadata(MetadataRetriever retriever, AsyncCallback callback, object asyncState) 677internal abstract IAsyncResult BeginRetrieve(TimeoutHelper timeoutHelper, AsyncCallback callback, object state); 818internal override IAsyncResult BeginRetrieve(TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 879internal AsyncMetadataLocationRetriever(WebRequest request, long maxMessageSize, XmlDictionaryReaderQuotas readerQuotas, TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 988internal override IAsyncResult BeginRetrieve(TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 1128internal AsyncMetadataReferenceRetriever(IMetadataExchange metadataClient, MessageVersion messageVersion, TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 1200internal AsyncMetadataResolver(ResolveCallState resolveCallState, AsyncCallback callerCallback, object callerAsyncState)
System\ServiceModel\Description\MetadataResolver.cs (7)
86public static IAsyncResult BeginResolve(Type contract, EndpointAddress address, AsyncCallback callback, object asyncState) 95public static IAsyncResult BeginResolve(IEnumerable<ContractDescription> contracts, EndpointAddress address, AsyncCallback callback, object asyncState) 99public static IAsyncResult BeginResolve(IEnumerable<ContractDescription> contracts, EndpointAddress address, MetadataExchangeClient client, AsyncCallback callback, object asyncState) 118public static IAsyncResult BeginResolve(Type contract, Uri address, MetadataExchangeClientMode mode, AsyncCallback callback, object asyncState) 127public static IAsyncResult BeginResolve(IEnumerable<ContractDescription> contracts, Uri address, MetadataExchangeClientMode mode, AsyncCallback callback, object asyncState) 132AsyncCallback callback, object asyncState) 165internal AsyncMetadataResolverHelper(EndpointAddress address, MetadataExchangeClientMode mode, MetadataExchangeClient client, IEnumerable<ContractDescription> knownContracts, AsyncCallback callback, object asyncState)
System\ServiceModel\Description\ServiceContractGenerator.cs (1)
343beginMethod.Parameters.Add(new CodeParameterDeclarationExpression(context.ServiceContractGenerator.GetCodeTypeReference(typeof(AsyncCallback)), Strings.AsyncCallbackArgName));
System\ServiceModel\Description\ServiceMetadataExtension.cs (1)
614public IAsyncResult BeginGet(Message request, AsyncCallback callback, object state)
System\ServiceModel\Description\ServiceReflector.cs (1)
345static readonly Type asyncCallbackType = typeof(AsyncCallback);
System\ServiceModel\Diagnostics\TraceAsyncResult.cs (4)
12static Action<AsyncCallback, IAsyncResult> waitResultCallback = new Action<AsyncCallback, IAsyncResult>(DoCallback); 14protected TraceAsyncResult(AsyncCallback callback, object state) : 38static void DoCallback(AsyncCallback callback, IAsyncResult result)
System\ServiceModel\Diagnostics\TraceUtility.cs (9)
33static Func<Action<AsyncCallback, IAsyncResult>> asyncCallbackGenerator; 450asyncCallbackGenerator = new Func<Action<AsyncCallback, IAsyncResult>>(CallbackGenerator); 465static Action<AsyncCallback, IAsyncResult> CallbackGenerator() 472return delegate(AsyncCallback callback, IAsyncResult result) 1212internal static AsyncCallback WrapExecuteUserCodeAsyncCallback(AsyncCallback callback) 1221AsyncCallback callback; 1223public ExecuteUserCodeAsync(AsyncCallback callback) 1228public AsyncCallback Callback
System\ServiceModel\Dispatcher\AsyncMethodInvoker.cs (1)
90public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\BufferedReceiveBinder.cs (5)
16static AsyncCallback tryReceiveCallback = Fx.ThunkCallback(new AsyncCallback(TryReceiveCallback)); 94public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 134public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 149public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 164public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ChannelDispatcher.cs (2)
640protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 750protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ChannelHandler.cs (2)
40static AsyncCallback onAsyncReplyComplete = Fx.ThunkCallback(new AsyncCallback(ChannelHandler.OnAsyncReplyComplete)); 41static AsyncCallback onAsyncReceiveComplete = Fx.ThunkCallback(new AsyncCallback(ChannelHandler.OnAsyncReceiveComplete));
System\ServiceModel\Dispatcher\DispatchOperationRuntime.cs (1)
25static AsyncCallback invokeCallback = Fx.ThunkCallback(new AsyncCallback(DispatchOperationRuntime.InvokeCallback));
System\ServiceModel\Dispatcher\DispatchRuntime.cs (1)
858public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\DuplexChannelBinder.cs (22)
314public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 358public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 373public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 662public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 700protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state) 712static AsyncCallback onSend; 715public ReplyAsyncResult(DuplexRequestContext context, Message message, TimeSpan timeout, AsyncCallback callback, object state) 879internal AsyncDuplexRequest(Message message, DuplexChannelBinder parent, TimeSpan timeout, AsyncCallback callback, object state) 1091public ChannelFaultedAsyncResult(AsyncCallback callback, object state) 1100static AsyncCallback receiveAsyncCallback; 1102static AsyncCallback closeInnerChannelCallback; 1397public IAsyncResult BeginReceive(AsyncCallback callback, object state) 1402public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 1417public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 1432public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 1476public IAsyncResult BeginClose(AsyncCallback callback, object state) 1481public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1530public IAsyncResult BeginOpen(AsyncCallback callback, object state) 1535public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1556public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 1561public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1620public IAsyncResult BeginWaitForBackgroundClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ErrorHandlingAcceptor.cs (4)
109internal IAsyncResult BeginTryAccept(TimeSpan timeout, AsyncCallback callback, object state) 218internal IAsyncResult BeginWaitForChannel(AsyncCallback callback, object state) 280internal ErrorHandlingCompletedAsyncResult(bool data, AsyncCallback callback, object state) 288internal WaitCompletedAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ErrorhandlingReceiver.cs (4)
98internal IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 204internal IAsyncResult BeginWaitForMessage(AsyncCallback callback, object state) 266internal ErrorHandlingCompletedAsyncResult(bool data, AsyncCallback callback, object state) 274internal WaitCompletedAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\IChannelBinder.cs (4)
23IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state); 27IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state); 31IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state); 35IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Dispatcher\IInteractiveChannelInitializer.cs (1)
11IAsyncResult BeginDisplayInitializationUI(IClientChannel channel, AsyncCallback callback, object state);
System\ServiceModel\Dispatcher\IListenerBinder.cs (1)
16IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Dispatcher\IManualConcurrencyOperationInvoker.cs (1)
16IAsyncResult InvokeBegin(object instance, object[] inputs, IInvokeReceivedNotification notification, AsyncCallback callback, object state);
System\ServiceModel\Dispatcher\ImmutableClientRuntime.cs (3)
194internal IAsyncResult BeginDisplayInitializationUI(ServiceChannel channel, AsyncCallback callback, object state) 313static AsyncCallback callback = Fx.ThunkCallback(new AsyncCallback(DisplayInitializationUIAsyncResult.Callback)); 317AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ImmutableDispatchRuntime.cs (3)
63static AsyncCallback onFinalizeCorrelationCompleted = 65static AsyncCallback onReplyCompleted = 1863AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\InputChannelBinder.cs (5)
68public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 93public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 123public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 143public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 187protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\InstanceContextManager.cs (6)
18IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state); 19IAsyncResult BeginCloseInput(TimeSpan timeout, AsyncCallback callback, object state); 71public IAsyncResult BeginCloseInput(TimeSpan timeout, AsyncCallback callback, object state) 200protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 282static AsyncCallback nestedCallback = Fx.ThunkCallback(new AsyncCallback(Callback)); 286public CloseInputAsyncResult(TimeSpan timeout, AsyncCallback otherCallback, object state, InstanceContext[] instances)
System\ServiceModel\Dispatcher\InvokerUtil.cs (1)
18delegate IAsyncResult InvokeBeginDelegate(object target, object[] inputs, AsyncCallback asyncCallback, object state);
System\ServiceModel\Dispatcher\IOperationInvoker.cs (1)
18IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state);
System\ServiceModel\Dispatcher\ListenerBinder.cs (6)
76public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) 123public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) 168public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) 213public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) 258public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state) 303public IAsyncResult BeginAccept(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ListenerHandler.cs (4)
19static AsyncCallback acceptCallback = Fx.ThunkCallback(new AsyncCallback(ListenerHandler.AcceptCallback)); 21static AsyncCallback waitCallback = Fx.ThunkCallback(new AsyncCallback(ListenerHandler.WaitCallback)); 112protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 655protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\MessageRpc.cs (2)
73static AsyncCallback handleEndComplete = Fx.ThunkCallback(new AsyncCallback(HandleEndComplete)); 74static AsyncCallback handleEndAbandon = Fx.ThunkCallback(new AsyncCallback(HandleEndAbandon));
System\ServiceModel\Dispatcher\MultipleReceiveBinder.cs (6)
22static AsyncCallback onInnerReceiveCompleted = Fx.ThunkCallback(OnInnerReceiveCompleted); 76public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 197public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 212public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 227public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 239public MultipleReceiveAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\OperationFormatter.cs (4)
358AsyncCallback callback, object state) 375object returnValue, bool isRequest, AsyncCallback callback, object state) 716protected override IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 739internal OnWriteBodyContentsAsyncResult(OperationFormatterBodyWriter operationFormatterBodyWriter, XmlDictionaryWriter writer, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\OutputChannelBinder.cs (4)
66public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 81public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 96public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 121public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ProxyOperationRuntime.cs (2)
392internal object[] MapAsyncBeginInputs(IMethodCallMessage methodCall, out AsyncCallback callback, out object asyncState) 410callback = args[methodCall.ArgCount - 2] as AsyncCallback;
System\ServiceModel\Dispatcher\ReceiveContextRPCFacet.cs (6)
13static AsyncCallback handleEndComplete = Fx.ThunkCallback(new AsyncCallback(HandleEndComplete)); 100public IAsyncResult BeginComplete(TimeSpan timeout, Transaction transaction, ChannelHandler channelHandler, AsyncCallback callback, object state) 131public IAsyncResult BeginAbandon(TimeSpan timeout, AsyncCallback callback, object state) 185static AsyncCallback completeCallback = Fx.ThunkCallback(new AsyncCallback(CompleteCallback)); 196AsyncCallback callback, 303static AsyncCallback abandonCallback = Fx.ThunkCallback(new AsyncCallback(AbandonCallback));
System\ServiceModel\Dispatcher\ReplyChannelBinder.cs (4)
68public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 83public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 98public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 123public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\RequestChannelBinder.cs (4)
61public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 76public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 91public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 125public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\StreamFormatter.cs (2)
73internal IAsyncResult BeginSerialize(XmlDictionaryWriter writer, object[] parameters, object returnValue, AsyncCallback callback, object state) 91AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\SyncMethodInvoker.cs (1)
242public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\TaskMethodInvoker.cs (7)
68public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state) 262private static Task<TResult> ToApm<TResult>(Task<TResult> task, AsyncCallback callback, object state) 274AsyncCallback callbackObj = (AsyncCallback)obj; 288Tuple<TaskCompletionSource<TResult>, AsyncCallback> tuple = (Tuple<TaskCompletionSource<TResult>, AsyncCallback>)obj; 290AsyncCallback callbackObj = tuple.Item2;
System\ServiceModel\IClientChannel.cs (1)
24IAsyncResult BeginDisplayInitializationUI(AsyncCallback callback, object state);
System\ServiceModel\ICommunicationObject.cs (4)
21IAsyncResult BeginClose(AsyncCallback callback, object state); 22IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state); 27IAsyncResult BeginOpen(AsyncCallback callback, object state); 28IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\IDuplexContextChannel.cs (1)
14IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\InstanceContext.cs (4)
319internal IAsyncResult BeginCloseInput(TimeSpan timeout, AsyncCallback callback, object state) 536protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 546protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 646public CloseAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, InstanceContext instanceContext)
System\ServiceModel\MsmqIntegration\MsmqIntegrationOutputChannel.cs (3)
55protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 100protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 116protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\AcceleratedTokenProvider.cs (1)
241protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\AcceptorSessionSymmetricMessageSecurityProtocol.cs (1)
142protected override IAsyncResult BeginSecureOutgoingMessageCore(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state)
System\ServiceModel\Security\ApplySecurityAndSendAsyncResult.cs (3)
17static AsyncCallback sharedCallback = Fx.ThunkCallback(new AsyncCallback(SharedCallback)); 22AsyncCallback callback, object state) 75protected abstract IAsyncResult BeginSendCore(MessageSenderType channel, Message message, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Security\AsymmetricSecurityProtocol.cs (2)
145protected override IAsyncResult BeginSecureOutgoingMessageCore(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 363SecurityProtocolCorrelationState correlationState, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\DuplexSecurityProtocolFactory.cs (2)
230public override IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, AsyncCallback callback, object state) 243AsyncCallback callback, object state)
System\ServiceModel\Security\ImpersonatingMessage.cs (2)
66protected override IAsyncResult OnBeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 141protected override IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state)
System\ServiceModel\Security\InfocardInteractiveChannelInitializer.cs (3)
33public virtual IAsyncResult BeginDisplayInitializationUI(IClientChannel channel, AsyncCallback callback, object state) 55static AsyncCallback callback = Fx.ThunkCallback(new AsyncCallback(GetTokenUIAsyncResult.Callback)); 60AsyncCallback callback,
System\ServiceModel\Security\InitiatorSessionSymmetricMessageSecurityProtocol.cs (2)
157protected override IAsyncResult BeginSecureOutgoingMessageCore(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 281public SecureOutgoingMessageAsyncResult(Message message, InitiatorSessionSymmetricMessageSecurityProtocol binding, SecurityToken signingToken, SecurityToken encryptionToken, SecurityToken sourceToken, SecurityTokenParameters tokenParameters, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\InitiatorSessionSymmetricTransportSecurityProtocol.cs (2)
152protected override IAsyncResult BeginSecureOutgoingMessageAtInitiatorCore(Message message, string actor, TimeSpan timeout, AsyncCallback callback, object state) 192public SecureOutgoingMessageAsyncResult(string actor, Message message, InitiatorSessionSymmetricTransportSecurityProtocol binding, SecurityToken signingToken, SecurityToken sourceToken, SecurityTokenParameters tokenParameters, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\ISecurityCommunicationObject.cs (2)
11IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state); 12IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Security\IssuanceTokenProviderBase.cs (10)
350protected override IAsyncResult BeginGetTokenCore(TimeSpan timeout, AsyncCallback callback, object state) 417protected abstract IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state); 426protected abstract IAsyncResult BeginInitializeChannelFactories(EndpointAddress target, TimeSpan timeout, AsyncCallback callback, object state); 639protected IAsyncResult BeginNegotiation(TimeSpan timeout, AsyncCallback callback, object state) 744static AsyncCallback createNegotiationStateCallback = Fx.ThunkCallback(new AsyncCallback(CreateNegotiationStateCallback)); 745static AsyncCallback initializeChannelFactoriesCallback = Fx.ThunkCallback(new AsyncCallback(InitializeChannelFactoriesCallback)); 746static AsyncCallback closeChannelCallback = Fx.ThunkCallback(new AsyncCallback(CloseChannelCallback)); 747static AsyncCallback sendRequestCallback = Fx.ThunkCallback(new AsyncCallback(SendRequestCallback)); 748static AsyncCallback openChannelCallback = Fx.ThunkCallback(new AsyncCallback(OpenChannelCallback)); 761public SecurityNegotiationAsyncResult(IssuanceTokenProviderBase<T> tokenProvider, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\IWSTrust13AsyncContract.cs (8)
26IAsyncResult BeginTrust13Cancel( Message request, AsyncCallback callback, object state ); 43IAsyncResult BeginTrust13Issue( Message request, AsyncCallback callback, object state ); 61IAsyncResult BeginTrust13Renew( Message request, AsyncCallback callback, object state ); 79IAsyncResult BeginTrust13Validate( Message request, AsyncCallback callback, object state ); 101IAsyncResult BeginTrust13CancelResponse( Message request, AsyncCallback callback, object state ); 124IAsyncResult BeginTrust13IssueResponse( Message request, AsyncCallback callback, object state ); 147IAsyncResult BeginTrust13RenewResponse( Message request, AsyncCallback callback, object state ); 170IAsyncResult BeginTrust13ValidateResponse( Message request, AsyncCallback callback, object state );
System\ServiceModel\Security\IWSTrustChannelContract.cs (4)
36IAsyncResult BeginCancel(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken request, AsyncCallback callback, object state); 70IAsyncResult BeginIssue(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken request, AsyncCallback callback, object asyncState); 96IAsyncResult BeginRenew(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken request, AsyncCallback callback, object state); 121IAsyncResult BeginValidate(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken request, AsyncCallback callback, object state);
System\ServiceModel\Security\IWSTrustContract.cs (4)
33IAsyncResult BeginCancel(Message message, AsyncCallback callback, object asyncState); 58IAsyncResult BeginIssue(Message message, AsyncCallback callback, object asyncState); 83IAsyncResult BeginRenew(Message message, AsyncCallback callback, object asyncState); 108IAsyncResult BeginValidate(Message message, AsyncCallback callback, object asyncState);
System\ServiceModel\Security\IWSTrustFeb2005AsyncContract.cs (8)
26IAsyncResult BeginTrustFeb2005Cancel( Message request, AsyncCallback callback, object state ); 43IAsyncResult BeginTrustFeb2005Issue( Message request, AsyncCallback callback, object state ); 60IAsyncResult BeginTrustFeb2005Renew( Message request, AsyncCallback callback, object state ); 77IAsyncResult BeginTrustFeb2005Validate( Message request, AsyncCallback callback, object state ); 94IAsyncResult BeginTrustFeb2005CancelResponse( Message request, AsyncCallback callback, object state ); 111IAsyncResult BeginTrustFeb2005IssueResponse( Message request, AsyncCallback callback, object state ); 128IAsyncResult BeginTrustFeb2005RenewResponse( Message request, AsyncCallback callback, object state ); 145IAsyncResult BeginTrustFeb2005ValidateResponse( Message request, AsyncCallback callback, object state );
System\ServiceModel\Security\MessageSecurityProtocol.cs (8)
79public override IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, AsyncCallback callback, object state) 101public override IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 123protected abstract IAsyncResult BeginSecureOutgoingMessageCore(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state); 680static AsyncCallback getTokenCompleteCallback = Fx.ThunkCallback(new AsyncCallback(GetTokenCompleteCallback)); 686bool doIdentityChecks, SecurityTokenAuthenticator identityCheckAuthenticator, SecurityProtocolCorrelationState oldCorrelationState, TimeSpan timeout, AsyncCallback callback, object state) 803static readonly AsyncCallback getPrimaryTokenCompleteCallback = Fx.ThunkCallback(new AsyncCallback(GetPrimaryTokenCompleteCallback)); 804static readonly AsyncCallback getSecondaryTokenCompleteCallback = Fx.ThunkCallback(new AsyncCallback(GetSecondaryTokenCompleteCallback)); 813AsyncCallback callback, object state)
System\ServiceModel\Security\NegotiationTokenAuthenticator.cs (1)
1051public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Security\NegotiationTokenProvider.cs (1)
158protected override IAsyncResult BeginInitializeChannelFactories(EndpointAddress target, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\ReceiveMessageAndVerifySecurityAsyncResultBase.cs (2)
13static AsyncCallback innerTryReceiveCompletedCallback = Fx.ThunkCallback(new AsyncCallback(InnerTryReceiveCompletedCallback)); 19protected ReceiveMessageAndVerifySecurityAsyncResultBase(IInputChannel innerChannel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecurityChannel.cs (5)
63protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 74IAsyncResult BeginCloseSecurityProtocol(TimeSpan timeout, AsyncCallback callback, object state) 120public NullSecurityProtocolCloseAsyncResult(AsyncCallback callback, object state) 134AsyncCallback callback, object state) 140protected override IAsyncResult BeginSendCore(IOutputChannel channel, Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecurityListenerSettingsLifetimeManager.cs (4)
83public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 109IAsyncResult BeginOpenSecurityProtocolFactory(TimeSpan timeout, AsyncCallback callback, object state) 148public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 226public DummyCloseAsyncResult(AsyncCallback callback, object state)
System\ServiceModel\Security\SecurityProtocol.cs (10)
123public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 128public IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 362public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 484public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 705public virtual IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, AsyncCallback callback, object state) 711public virtual IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 717public virtual IAsyncResult BeginVerifyIncomingMessage(Message message, TimeSpan timeout, AsyncCallback callback, object state) 723public virtual IAsyncResult BeginVerifyIncomingMessage(Message message, TimeSpan timeout, SecurityProtocolCorrelationState[] correlationStates, AsyncCallback callback, object state) 856static AsyncCallback getSupportingTokensCallback = Fx.ThunkCallback(new AsyncCallback(GetSupportingTokenCallback)); 864public GetSupportingTokensAsyncResult(Message m, SecurityProtocol binding, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecurityProtocolFactory.cs (4)
632public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 637public IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1095public IAsyncResult BeginOpen(bool actAsInitiator, TimeSpan timeout, AsyncCallback callback, object state) 1118public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionClientSettings.cs (50)
220public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 230IAsyncResult ISecurityCommunicationObject.OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 235IAsyncResult ISecurityCommunicationObject.OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 650protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 850IAsyncResult BeginSendCloseMessage(TimeSpan timeout, AsyncCallback callback, object state) 871IAsyncResult BeginSendCloseResponseMessage(TimeSpan timeout, AsyncCallback callback, object state) 1294protected IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, AsyncCallback callback, object state) 1377protected virtual IAsyncResult BeginCloseCore(TimeSpan timeout, AsyncCallback callback, object state) 1387protected IAsyncResult BeginReceiveInternal(TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 1458protected IAsyncResult BeginCloseSession(TimeSpan timeout, AsyncCallback callback, object state) 1534protected virtual IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 1664protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1676static AsyncCallback closeChannelBinderCallback = Fx.ThunkCallback(new AsyncCallback(ChannelBinderCloseCallback)); 1677static AsyncCallback closeTokenProviderCallback = Fx.ThunkCallback(new AsyncCallback(CloseTokenProviderCallback)); 1682public CloseCoreAsyncResult(ClientSecuritySessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 1846static AsyncCallback onReceive = Fx.ThunkCallback(new AsyncCallback(OnReceive)); 1852public ReceiveAsyncResult(ClientSecuritySessionChannel channel, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 1940static readonly AsyncCallback getTokenCallback = Fx.ThunkCallback(new AsyncCallback(GetTokenCallback)); 1941static readonly AsyncCallback openTokenProviderCallback = Fx.ThunkCallback(new AsyncCallback(OpenTokenProviderCallback)); 1945public OpenAsyncResult(ClientSecuritySessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state) 2069static readonly AsyncCallback closeOutputSessionCallback = Fx.ThunkCallback(new AsyncCallback(CloseOutputSessionCallback)); 2070static readonly AsyncCallback shutdownWaitCallback = Fx.ThunkCallback(new AsyncCallback(ShutdownWaitCallback)); 2077public CloseSessionAsyncResult(TimeSpan timeout, ClientSecuritySessionChannel sessionChannel, AsyncCallback callback, object state) 2234static readonly AsyncCallback closeSessionCallback = Fx.ThunkCallback(new AsyncCallback(CloseSessionCallback)); 2235static readonly AsyncCallback outputSessionClosedCallback = Fx.ThunkCallback(new AsyncCallback(OutputSessionClosedCallback)); 2236static readonly AsyncCallback closeCoreCallback = Fx.ThunkCallback(new AsyncCallback(CloseCoreCallback)); 2241public CloseAsyncResult(ClientSecuritySessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state) 2482public KeyRenewalAsyncResult(Message message, ClientSecuritySessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state) 2526static readonly AsyncCallback secureOutgoingMessageCallback = Fx.ThunkCallback(new AsyncCallback(SecureOutgoingMessageCallback)); 2533protected SecureSendAsyncResultBase(Message message, ClientSecuritySessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state) 2624static readonly AsyncCallback sendCallback = Fx.ThunkCallback(new AsyncCallback(SendCallback)); 2628public SecureSendAsyncResult(Message message, ClientSecuritySessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state, bool autoCloseMessage) 2865protected override IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 2877IAsyncResult BeginBaseCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 2944public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state) 2949public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 2966static readonly AsyncCallback requestCallback = Fx.ThunkCallback(new AsyncCallback(RequestCallback)); 2969public SecureRequestAsyncResult(Message request, ClientSecuritySessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state) 3030static readonly AsyncCallback baseCloseOutputSessionCallback = Fx.ThunkCallback(new AsyncCallback(BaseCloseOutputSessionCallback)); 3031static readonly AsyncCallback receiveInternalCallback = Fx.ThunkCallback(new AsyncCallback(ReceiveInternalCallback)); 3036public CloseOutputSessionAsyncResult(SecurityRequestSessionChannel requestChannel, TimeSpan timeout, AsyncCallback callback, object state) 3149static AsyncCallback onReceive = Fx.ThunkCallback(new AsyncCallback(OnReceive)); 3200public IAsyncResult BeginReceive(AsyncCallback callback, object state) 3205public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 3215public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 3264public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 3269public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 3421public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 3523public IAsyncResult BeginCloseOutputSession(AsyncCallback callback, object state) 3528public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionSecurityTokenAuthenticator.cs (1)
1237public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionSecurityTokenProvider.cs (7)
455protected override IAsyncResult BeginGetTokenCore(TimeSpan timeout, AsyncCallback callback, object state) 472protected override IAsyncResult BeginRenewTokenCore(TimeSpan timeout, SecurityToken tokenToBeRenewed, AsyncCallback callback, object state) 824static AsyncCallback openChannelCallback = Fx.ThunkCallback(new AsyncCallback(OpenChannelCallback)); 825static AsyncCallback closeChannelCallback = Fx.ThunkCallback(new AsyncCallback(CloseChannelCallback)); 835public SessionOperationAsyncResult(SecuritySessionSecurityTokenProvider requestor, SecuritySessionOperation operation, EndpointAddress target, Uri via, SecurityToken currentToken, TimeSpan timeout, AsyncCallback callback, object state) 1096protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1106protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SecuritySessionServerSettings.cs (53)
359public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 364public IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 417internal IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 437internal IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 988static AsyncCallback receiveCallback = Fx.ThunkCallback(new AsyncCallback(ReceiveCallback)); 1241protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 1318protected virtual IAsyncResult BeginCloseCore(TimeSpan timeout, AsyncCallback callback, object state) 1478public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 1483public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 1501public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 1607public IAsyncResult BeginReceive(AsyncCallback callback, object state) 1612public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 1630public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 2020internal IAsyncResult BeginSendCloseResponse(RequestContext requestContext, Message closeResponse, TimeSpan timeout, AsyncCallback callback, object state) 2114internal IAsyncResult BeginSendClose(TimeSpan timeout, AsyncCallback callback, object state) 2168internal IAsyncResult BeginSendMessage(RequestContext requestContext, Message response, TimeSpan timeout, AsyncCallback callback, object state) 2180static AsyncCallback sendCallback = Fx.ThunkCallback(new AsyncCallback(SendCallback)); 2186public SendMessageAsyncResult(ServerSecuritySessionChannel sessionChannel, RequestContext requestContext, Message message, TimeSpan timeout, AsyncCallback callback, 2291public SendCompletedAsyncResult(AsyncCallback callback, object state) 2305static AsyncCallback channelBinderCloseCallback = Fx.ThunkCallback(new AsyncCallback(ChannelBinderCloseCallback)); 2306static AsyncCallback settingsLifetimeManagerCloseCallback = Fx.ThunkCallback(new AsyncCallback(SettingsLifetimeManagerCloseCallback)); 2311public CloseCoreAsyncResult(ServerSecuritySessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 2549static AsyncCallback onReceive = Fx.ThunkCallback(new AsyncCallback(OnReceive)); 2557public ReceiveRequestAsyncResult(ServerSecuritySessionChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 3006protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 3129static readonly AsyncCallback sendCloseResponseCallback = Fx.ThunkCallback(new AsyncCallback(SendCloseResponseCallback)); 3130static readonly AsyncCallback receiveCallback = Fx.ThunkCallback(new AsyncCallback(ReceiveCallback)); 3131static readonly AsyncCallback waitCallback = Fx.ThunkCallback(new AsyncCallback(WaitForInputSessionCloseCallback)); 3132static readonly AsyncCallback closeCoreCallback = Fx.ThunkCallback(new AsyncCallback(CloseCoreCallback)); 3139public CloseAsyncResult(ServerSecuritySimplexSessionChannel sessionChannel, bool sendCloseResponse, RequestContext closeRequestContext, Message closeResponse, TimeSpan timeout, AsyncCallback callback, object state) 3518public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state) 3563protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state) 3638public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 3643public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 3723protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 4005IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 4020public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 4032static AsyncCallback sendCallback = Fx.ThunkCallback(new AsyncCallback(SendCallback)); 4040public CloseOutputSessionAsyncResult(ServerSecurityDuplexSessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state) 4097IAsyncResult BeginSend(AsyncCallback callback, object state) 4142static readonly AsyncCallback receiveCallback = Fx.ThunkCallback(new AsyncCallback(ReceiveCallback)); 4143static readonly AsyncCallback inputSessionWaitCallback = Fx.ThunkCallback(new AsyncCallback(WaitForInputSessionCloseCallback)); 4144static readonly AsyncCallback closeOutputSessionCallback = Fx.ThunkCallback(new AsyncCallback(CloseOutputSessionCallback)); 4145static readonly AsyncCallback outputSessionWaitCallback = Fx.ThunkCallback(new AsyncCallback(WaitForOutputSessionCloseCallback)); 4146static readonly AsyncCallback closeCoreCallback = Fx.ThunkCallback(new AsyncCallback(CloseCoreCallback)); 4150public CloseAsyncResult(ServerSecurityDuplexSessionChannel sessionChannel, TimeSpan timeout, AsyncCallback callback, object state) 4612public IAsyncResult BeginCloseOutputSession(AsyncCallback callback, object state) 4617public IAsyncResult BeginCloseOutputSession(TimeSpan timeout, AsyncCallback callback, object state) 4718IAsyncResult BeginHandleDemuxFailure<TFaultContext>(Message message, TFaultContext faultContext, AsyncCallback callback, object state) 4725public IAsyncResult BeginHandleDemuxFailure(Message message, RequestContext faultContext, AsyncCallback callback, object state) 4730public IAsyncResult BeginHandleDemuxFailure(Message message, IOutputChannel faultContext, AsyncCallback callback, object state) 4754static AsyncCallback sendCallback = Fx.ThunkCallback(new AsyncCallback(SendCallback)); 4757public SendFaultAsyncResult(Message fault, TFaultContext faultContext, AsyncCallback callback, object state)
System\ServiceModel\Security\SecurityUtils.cs (9)
1525AsyncCallback callback, object state) 1536AsyncCallback callback, object state) 1577AsyncCallback callback, object state) 1588AsyncCallback callback, object state) 1642static AsyncCallback onOpen; 1644public OpenCommunicationObjectAsyncResult(object obj, TimeSpan timeout, AsyncCallback callback, object state) 1712static AsyncCallback onClose; 1714public CloseCommunicationObjectAsyncResult(object obj, TimeSpan timeout, AsyncCallback callback, object state) 2439public OperationWithTimeoutAsyncResult(OperationWithTimeoutCallback operationWithTimeout, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SpnegoTokenProvider.cs (1)
205protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\SymmetricSecurityProtocol.cs (2)
156protected override IAsyncResult BeginSecureOutgoingMessageCore(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 402bool doIdentityChecks, SecurityTokenAuthenticator identityCheckAuthenticator, SecurityProtocolCorrelationState correlationState, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\TlsnegoTokenProvider.cs (3)
120protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state) 233static readonly AsyncCallback getTokensCallback = Fx.ThunkCallback(new AsyncCallback(GetTokensCallback)); 237public CreateSspiStateAsyncResult(EndpointAddress target, Uri via, TlsnegoTokenProvider tlsTokenProvider, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\Tokens\IssuedSecurityTokenProvider.cs (7)
299public IAsyncResult BeginClose(AsyncCallback callback, object state) 304public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 336public IAsyncResult BeginOpen(AsyncCallback callback, object state) 342public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 360protected override IAsyncResult BeginGetTokenCore(TimeSpan timeout, AsyncCallback callback, object state) 762protected override IAsyncResult BeginInitializeChannelFactories(EndpointAddress target, TimeSpan timeout, AsyncCallback callback, object state) 827protected override IAsyncResult BeginCreateNegotiationState(EndpointAddress target, Uri via, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\TransportSecurityProtocol.cs (4)
75public override IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, SecurityProtocolCorrelationState correlationState, AsyncCallback callback, object state) 105public override IAsyncResult BeginSecureOutgoingMessage(Message message, TimeSpan timeout, AsyncCallback callback, object state) 110protected virtual IAsyncResult BeginSecureOutgoingMessageAtInitiatorCore(Message message, string actor, TimeSpan timeout, AsyncCallback callback, object state) 279public SecureOutgoingMessageAsyncResult(string actor, Message message, TransportSecurityProtocol binding, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WrappedSessionSecurityTokenAuthenticator.cs (4)
161public System.IAsyncResult BeginClose( System.TimeSpan timeout, System.AsyncCallback callback, object state ) 166public System.IAsyncResult BeginClose( System.AsyncCallback callback, object state ) 171public System.IAsyncResult BeginOpen( System.TimeSpan timeout, System.AsyncCallback callback, object state ) 176public System.IAsyncResult BeginOpen( System.AsyncCallback callback, object state )
System\ServiceModel\Security\WrapperSecurityCommunicationObject.cs (14)
46protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 51protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 200public IAsyncResult BeginClose(AsyncCallback callback, object state) 205public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 225public IAsyncResult BeginOpen(AsyncCallback callback, object state) 230public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 250public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 255public IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 377public IAsyncResult BeginClose(AsyncCallback callback, object state) 382public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 402public IAsyncResult BeginOpen(AsyncCallback callback, object state) 407public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 427public IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 432public IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WSSecurityJan2004.cs (1)
353public override IAsyncResult BeginReadTokenCore(XmlDictionaryReader reader, SecurityTokenResolver tokenResolver, AsyncCallback callback, object state)
System\ServiceModel\Security\WSSecurityTokenSerializer.cs (1)
484SecurityTokenResolver tokenResolver, AsyncCallback callback, object state)
System\ServiceModel\Security\WSTrustChannel.cs (26)
45AsyncCallback callback, 750/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 758public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 767/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 775public IAsyncResult BeginClose(AsyncCallback callback, object state) 787/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 795public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 804/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 812public IAsyncResult BeginOpen(AsyncCallback callback, object state) 1023AsyncCallback callback, 1066public IAsyncResult BeginCancel(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken rst, AsyncCallback callback, object state) 1073/// <see cref="BeginCancel(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken,AsyncCallback,object)" />. 1092public IAsyncResult BeginIssue(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken rst, AsyncCallback callback, object asyncState) 1099/// <see cref="BeginIssue(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken,AsyncCallback,object)" />. 1121public IAsyncResult BeginRenew(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken rst, AsyncCallback callback, object state) 1128/// <see cref="BeginRenew(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken,AsyncCallback,object)" />. 1147public IAsyncResult BeginValidate(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken rst, AsyncCallback callback, object state) 1154/// <see cref="BeginValidate(System.IdentityModel.Protocols.WSTrust.RequestSecurityToken,AsyncCallback,object)" />. 1183/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 1191public IAsyncResult BeginCancel(Message message, AsyncCallback callback, object asyncState) 1221/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 1229public IAsyncResult BeginIssue(Message message, AsyncCallback callback, object asyncState) 1259/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 1267public IAsyncResult BeginRenew(Message message, AsyncCallback callback, object asyncState) 1297/// The <see cref="AsyncCallback" /> delegate that receives notification of the completion of the asynchronous 1305public IAsyncResult BeginValidate(Message message, AsyncCallback callback, object asyncState)
System\ServiceModel\Security\WSTrustFeb2005.cs (2)
318protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 328protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Security\WSTrustServiceContract.cs (20)
193protected virtual IAsyncResult BeginDispatchRequest(DispatchContext dispatchContext, AsyncCallback asyncCallback, object asyncState) 524protected virtual IAsyncResult BeginProcessCore(Message requestMessage, WSTrustRequestSerializer requestSerializer, WSTrustResponseSerializer responseSerializer, string requestAction, string responseAction, string trustNamespace, AsyncCallback callback, object state) 921public IAsyncResult BeginTrust13Cancel(Message request, AsyncCallback callback, object state) 943public IAsyncResult BeginTrust13Issue(Message request, AsyncCallback callback, object state) 965public IAsyncResult BeginTrust13Renew(Message request, AsyncCallback callback, object state) 987public IAsyncResult BeginTrust13Validate(Message request, AsyncCallback callback, object state) 1009public IAsyncResult BeginTrust13CancelResponse(Message request, AsyncCallback callback, object state) 1041public IAsyncResult BeginTrust13IssueResponse(Message request, AsyncCallback callback, object state) 1073public IAsyncResult BeginTrust13RenewResponse(Message request, AsyncCallback callback, object state) 1105public IAsyncResult BeginTrust13ValidateResponse(Message request, AsyncCallback callback, object state) 1137public IAsyncResult BeginTrustFeb2005Cancel(Message request, AsyncCallback callback, object state) 1159public IAsyncResult BeginTrustFeb2005Issue(Message request, AsyncCallback callback, object state) 1181public IAsyncResult BeginTrustFeb2005Renew(Message request, AsyncCallback callback, object state) 1203public IAsyncResult BeginTrustFeb2005Validate(Message request, AsyncCallback callback, object state) 1225public IAsyncResult BeginTrustFeb2005CancelResponse(Message request, AsyncCallback callback, object state) 1257public IAsyncResult BeginTrustFeb2005IssueResponse(Message request, AsyncCallback callback, object state) 1289public IAsyncResult BeginTrustFeb2005RenewResponse(Message request, AsyncCallback callback, object state) 1321public IAsyncResult BeginTrustFeb2005ValidateResponse(Message request, AsyncCallback callback, object state) 1367AsyncCallback asyncCallback, 1478public DispatchRequestAsyncResult(DispatchContext dispatchContext, AsyncCallback asyncCallback, object asyncState)
System\ServiceModel\ServiceChannelManager.cs (3)
125public IAsyncResult BeginCloseInput(TimeSpan timeout, AsyncCallback callback, object state) 314protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 319IAsyncResult OnBeginCloseContinue(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\ServiceHost.cs (10)
562internal virtual IAsyncResult BeginAfterInitializeRuntime(TimeSpan timeout, AsyncCallback callback, object state) 828protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 841protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 847IAsyncResult BeginOpenChannelDispatchers(TimeSpan timeout, AsyncCallback callback, object state) 1250public OpenAsyncResult(ServiceHostBase host, TimeSpan timeout, AsyncCallback callback, object state) 1305public CloseAsyncResult(TimeSpan timeout, AsyncCallback callback, object state, ServiceHostBase serviceHost) 1330AsyncCallback callback = Fx.ThunkCallback(this.CloseListenersCallback); 1394AsyncCallback callback = Fx.ThunkCallback(this.CloseInputCallback); 1469AsyncCallback callback = Fx.ThunkCallback(this.CloseInstancesCallback); 1534AsyncCallback callback = Fx.ThunkCallback(this.CloseChannelDispatchersCallback);
System.ServiceModel.Activation (17)
System\ServiceModel\Activation\AspNetRouteServiceHttpHandler.cs (1)
46public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback callback, object extraData)
System\ServiceModel\Activation\CollectibleLRUCache.cs (2)
271public abstract IAsyncResult BeginClose(AsyncCallback callback, object state); 301AsyncCallback collectibleNodeClosedCallback;
System\ServiceModel\Activation\HostedAspNetEnvironment.cs (2)
656protected override IAsyncResult OnBeginAbandon(TimeSpan timeout, AsyncCallback callback, object state) 661protected override IAsyncResult OnBeginComplete(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activation\HostedHttpContext.cs (3)
165Message message, TimeSpan timeout, AsyncCallback callback, object state) 377public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 677public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Activation\HostedHttpRequestAsyncResult.cs (4)
41static AsyncCallback processRequestCompleteCallback; 83public HostedHttpRequestAsyncResult(HttpApplication context, bool flowContext, bool ensureWFService, AsyncCallback callback, object state) : 91public HostedHttpRequestAsyncResult(HttpApplication context, string aspNetRouteServiceVirtualPath, bool flowContext, bool ensureWFService, AsyncCallback callback, object state) : 250public static AsyncCallback ProcessRequestCompleteCallback
System\ServiceModel\Activation\HostedHttpTransportManager.cs (1)
24static AsyncCallback onHttpContextReceived = Fx.ThunkCallback(OnHttpContextReceived);
System\ServiceModel\Activation\ServiceHttpHandlerFactory.cs (1)
59public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback callback, object extraData)
System\ServiceModel\Activation\ServiceHttpModule.cs (2)
53static public IAsyncResult BeginProcessRequest(object sender, EventArgs e, AsyncCallback cb, object extraData) 118private static CompletedAsyncResult GetCompletedAsyncResult(AsyncCallback cb, object state)
System\ServiceModel\ServiceHostingEnvironment.cs (1)
1693public override IAsyncResult BeginClose(AsyncCallback callback, object state)
System.ServiceModel.Activities (210)
System\ServiceModel\Activities\Description\WorkflowOperationBehavior.cs (1)
163object[] inputs, Transaction currentTransaction, IInvokeReceivedNotification notification, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activities\Dispatcher\BufferedReceiveManager.cs (1)
16static AsyncCallback onEndAbandon;
System\ServiceModel\Activities\Dispatcher\ControlOperationInvoker.cs (8)
164public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state) 169public IAsyncResult InvokeBegin(object instance, object[] inputs, IInvokeReceivedNotification notification, AsyncCallback callback, object state) 188TimeSpan timeout, AsyncCallback callback, object state) 297AsyncCallback callback, object state) 874IAsyncResult BeginRunAndGetResponse(TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 895RunAndGetResponseAsyncResult(ControlOperationAsyncResult control, TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 918public static RunAndGetResponseAsyncResult Create(ControlOperationAsyncResult control, TimeoutHelper timeoutHelper, AsyncCallback callback, object state) 989AsyncCallback callback, object state)
System\ServiceModel\Activities\Dispatcher\DurableInstanceManager.cs (13)
25static AsyncCallback waitAndHandleStoreEventsCallback = Fx.ThunkCallback(new AsyncCallback(WaitAndHandleStoreEventsCallback)); 189IAsyncResult BeginWaitAndHandleStoreEvents(AsyncCallback callback, object state) 268internal IAsyncResult BeginGetInstance(InstanceKey instanceKey, ICollection<InstanceKey> additionalKeys, WorkflowGetInstanceContext parameters, TimeSpan timeout, AsyncCallback callback, object state) 275WorkflowIdentityKey updatedIdentity, TimeSpan timeout, AsyncCallback callback, object state) 425public IAsyncResult BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 449public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 506public OpenInstanceStoreAsyncResult(DurableInstanceManager instanceManager, TimeSpan timeout, AsyncCallback callback, object state) 606static AsyncCallback handleEndReleaseInstanceWrapperCallback = Fx.ThunkCallback(new AsyncCallback(HandleEndReleaseInstanceWrapperCallback)); 621public CloseAsyncResult(DurableInstanceManager instanceManager, TimeSpan timeout, AsyncCallback callback, object state) 1008TimeSpan timeout, AsyncCallback callback, object state) 1023TimeSpan timeout, AsyncCallback callback, object state) 1036TimeSpan timeout, AsyncCallback callback, object state) 1342public WaitAndHandleStoreEventsAsyncResult(DurableInstanceManager instanceManager, AsyncCallback callback, object state)
System\ServiceModel\Activities\Dispatcher\PersistenceContext.cs (14)
219AsyncCallback callback, 233public IAsyncResult BeginRelease(TimeSpan timeout, AsyncCallback callback, object state) 246ICollection<InstanceKey> associatedKeys, TimeSpan timeout, AsyncCallback callback, object state) 252ICollection<InstanceKey> associatedKeys, TimeSpan timeout, AsyncCallback callback, object state) 258TimeSpan timeout, bool applicationKeys, AsyncCallback callback, object state) 277public IAsyncResult BeginUpdateSuspendMetadata(Exception reason, TimeSpan timeout, AsyncCallback callback, object state) 343protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 348protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 517internal TransactionWaitAsyncResult BeginEnlist(TimeSpan timeout, AsyncCallback callback, object state) 724public CloseAsyncResult(PersistenceContext persistenceContext, AsyncCallback callback, object state) 780AsyncCallback callback, object state) 975public ReleaseAsyncResult(PersistenceContext persistenceContext, TimeSpan timeout, AsyncCallback callback, object state) 1130bool applicationKeys, AsyncCallback callback, object state) 1324public UpdateSuspendMetadataAsyncResult(PersistenceContext persistenceContext, Exception reason, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activities\Dispatcher\PersistenceProviderDirectory.cs (7)
154TimeSpan timeout, AsyncCallback callback, object state) 171TimeSpan timeout, AsyncCallback callback, object state) 194AsyncCallback callback, object state) 211TimeSpan timeout, AsyncCallback callback, object state) 449internal IAsyncResult BeginReserveThrottle(TimeSpan timeout, AsyncCallback callback, object state) 748TimeSpan timeout, AsyncCallback callback, object state) 1353public ReserveThrottleAsyncResult(PersistenceProviderDirectory directory, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activities\Dispatcher\TransactionContext.cs (2)
20static AsyncCallback handleEndPrepare = Fx.ThunkCallback(new AsyncCallback(HandleEndPrepare)); 139public PrepareAsyncResult(TransactionContext context, AsyncCallback callback, object state)
System\ServiceModel\Activities\Dispatcher\TransactionWaitAsyncResult.cs (1)
21internal TransactionWaitAsyncResult(Transaction transaction, PersistenceContext persistenceContext, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activities\Dispatcher\WorkflowServiceInstance.cs (68)
65static AsyncCallback handleEndReleaseInstance; 67static AsyncCallback trackCompleteDoneCallback; 68static AsyncCallback trackIdleDoneCallback; 69static AsyncCallback trackUnhandledExceptionDoneCallback; 167static AsyncCallback TrackIdleDoneCallback 180static AsyncCallback TrackUnhandledExceptionDoneCallback 193static AsyncCallback TrackCompleteDoneCallback 737IAsyncResult BeginAcquireLockOnIdle(TimeSpan timeout, ref bool ownsLock, AsyncCallback callback, object state) 847public IAsyncResult BeginAbandon(Exception reason, TimeSpan timeout, AsyncCallback callback, object state) 854IAsyncResult BeginAbandon(Exception reason, bool shouldTrackAbort, TimeSpan timeout, AsyncCallback callback, object state) 864IAsyncResult BeginAbandonAndSuspend(Exception reason, TimeSpan timeout, AsyncCallback callback, object state) 1149public IAsyncResult BeginTerminate(string reason, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 1161IAsyncResult BeginTerminate(Exception reason, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 1173public IAsyncResult BeginCancel(Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 1189public IAsyncResult BeginRun(Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 1194public IAsyncResult BeginRun(Transaction transaction, string operationName, TimeSpan timeout, AsyncCallback callback, object state) 1474public IAsyncResult BeginSuspend(bool isUnlocked, string reason, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 1484public IAsyncResult BeginUnsuspend(Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 1574public IAsyncResult BeginPersist(TimeSpan timeout, AsyncCallback callback, object state) 1579IAsyncResult BeginPersist(bool isTry, TimeSpan timeout, AsyncCallback callback, object state) 1590protected override IAsyncResult OnBeginFlushTrackingRecords(AsyncCallback callback, object state) 1600protected override IAsyncResult OnBeginPersist(AsyncCallback callback, object state) 1610protected override IAsyncResult OnBeginAssociateKeys(ICollection<InstanceKey> keys, AsyncCallback callback, object state) 1688public IAsyncResult BeginResumeProtocolBookmark(Bookmark bookmark, BookmarkScope bookmarkScope, object value, TimeSpan timeout, AsyncCallback callback, object state) 1715protected override IAsyncResult OnBeginResumeBookmark(Bookmark bookmark, object value, TimeSpan timeout, AsyncCallback callback, object state) 1765IAsyncResult BeginWaitForCanPersist(ref bool ownsLock, TimeSpan timeout, AsyncCallback callback, object state) 2037public IAsyncResult BeginTryAcquireReference(TimeSpan timeout, AsyncCallback callback, object state) 2047public IAsyncResult BeginReleaseInstance(bool isTryUnload, TimeSpan timeout, AsyncCallback callback, object state) 2062public IAsyncResult BeginAssociateInfrastructureKeys(ICollection<InstanceKey> associatedKeys, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 2080public IAsyncResult BeginWaitForPendingOperations(string sessionId, TimeSpan timeout, AsyncCallback callback, object state) 2433bool isTryUnload, TimeSpan timeout, AsyncCallback callback, object state) 2572IAsyncResult BeginUnload(TimeSpan timeout, AsyncCallback callback, object state) 2582IAsyncResult BeginTryUnload(TimeSpan timeout, AsyncCallback callback, object state) 2775public TryAcquireReferenceAsyncResult(WorkflowServiceInstance instance, TimeSpan timeout, AsyncCallback callback, object state) 2848public PendingOperationAsyncResult(bool isFirstRequest, TimeSpan timeout, AsyncCallback callback, object state) 2909TimeSpan timeout, AsyncCallback callback, object state) 3002public ResumeProtocolBookmarkAsyncResult(WorkflowServiceInstance instance, Bookmark bookmark, object value, BookmarkScope bookmarkScope, bool isResumeProtocolBookmark, TimeSpan timeout, AsyncCallback callback, object state) 3366bool isWorkflowThread, bool isTry, TimeSpan timeout, AsyncCallback callback, object state) 3696AsyncCallback PrepareInnerAsyncCompletion(AsyncCompletion innerCallback) 4045protected SimpleOperationAsyncResult(WorkflowServiceInstance instance, Transaction transaction, AsyncCallback callback, object state) 4246protected virtual IAsyncResult BeginPerformOperation(AsyncCallback callback, object state) 4265TerminateAsyncResult(WorkflowServiceInstance instance, Exception reason, Transaction transaction, AsyncCallback callback, object state) 4271public static TerminateAsyncResult Create(WorkflowServiceInstance instance, Exception reason, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 4325AbandonAsyncResult(WorkflowServiceInstance instance, Exception reason, bool shouldTrackAbort, AsyncCallback callback, object state) 4332public static AbandonAsyncResult Create(WorkflowServiceInstance instance, Exception reason, bool shouldTrackAbort, TimeSpan timeout, AsyncCallback callback, object state) 4378protected override IAsyncResult BeginPerformOperation(AsyncCallback callback, object state) 4434AbandonAndSuspendAsyncResult(WorkflowServiceInstance instance, Exception reason, AsyncCallback callback, object state) 4440public static AbandonAndSuspendAsyncResult Create(WorkflowServiceInstance instance, Exception reason, TimeSpan timeout, AsyncCallback callback, object state) 4470protected override IAsyncResult BeginPerformOperation(AsyncCallback callback, object state) 4518CancelAsyncResult(WorkflowServiceInstance instance, Transaction transaction, AsyncCallback callback, object state) 4523public static CancelAsyncResult Create(WorkflowServiceInstance instance, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 4574RunAsyncResult(WorkflowServiceInstance instance, Transaction transaction, string operationName, AsyncCallback callback, object state) 4580public static RunAsyncResult Create(WorkflowServiceInstance instance, Transaction transaction, string operationName, TimeSpan timeout, AsyncCallback callback, object state) 4615SuspendAsyncResult(WorkflowServiceInstance instance, bool isUnlocked, string reason, Transaction transaction, AsyncCallback callback, object state) 4622public static SuspendAsyncResult Create(WorkflowServiceInstance instance, bool isUnlocked, string reason, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 4652protected override IAsyncResult BeginPerformOperation(AsyncCallback callback, object state) 4673public SuspendCoreAsyncResult(SuspendAsyncResult parent, AsyncCallback callback, object state) 4729UnsuspendAsyncResult(WorkflowServiceInstance instance, Transaction transaction, AsyncCallback callback, object state) 4734public static UnsuspendAsyncResult Create(WorkflowServiceInstance instance, Transaction transaction, TimeSpan timeout, AsyncCallback callback, object state) 4782public AcquireLockOnIdleAsyncResult(WorkflowServiceInstance instance, TimeSpan timeout, ref bool ownsLock, AsyncCallback callback, object state) 4977public WaitForCanPersistAsyncResult(WorkflowServiceInstance instance, ref bool ownsLock, TimeSpan timeout, AsyncCallback callback, object state) 5611public bool TryBeginComplete(AsyncCallback callback, object state, out IAsyncResult result) 5640static AsyncCallback onPersistCallback = Fx.ThunkCallback(new AsyncCallback(PersistCallback)); 5641static AsyncCallback onUnloadCallback = Fx.ThunkCallback(new AsyncCallback(UnloadCallback)); 5642static AsyncCallback onUnlockAndAbortCallback = Fx.ThunkCallback(new AsyncCallback(UnlockAndAbortCallback)); 5868IAsyncResult BeginUnlockAndAbort(TimeSpan timeout, AsyncCallback callback, object state) 5912public UnlockAndAbortAsyncResult(WorkflowServiceInstance instance, TimeSpan timeout, AsyncCallback callback, object state) 6029static AsyncCallback operationCallback = Fx.ThunkCallback(new AsyncCallback(OperationCallback));
System\ServiceModel\Activities\InternalReceiveMessage.cs (2)
1234protected override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state) 1258public WaitForReplyAsyncResult(ReceiveMessageInstanceData instance, AsyncCallback callback, object state)
System\ServiceModel\Activities\InternalSendMessage.cs (11)
1631protected override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state) 1649public OpenChannelFactoryAsyncResult(SendMessageInstance instance, AsyncCallback callback, object state) 1726protected override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state) 1749static AsyncCallback onChannelReceiveReplyCompleted = Fx.ThunkCallback(OnChannelReceiveReplyComplete); 1761public OpenChannelAndSendMessageAsyncResult(InternalSendMessage internalSendMessage, SendMessageInstance instance, Transaction currentTransactionContext, AsyncCallback callback, object state) 2068protected override IAsyncResult BeginExecute(AsyncCodeActivityContext context, AsyncCallback callback, object state) 2086public WaitOnChannelCorrelationAsyncResult(CorrelationSynchronizer synchronizer, AsyncCallback callback, object state) 2624protected override IAsyncResult OnBeginFinalizeCorrelation(Message message, TimeSpan timeout, AsyncCallback callback, object state) 2647AsyncCallback callback, object state) 2759static AsyncCallback onDisposeCommunicationObject = Fx.ThunkCallback(new AsyncCallback(OnDisposeCommunicationObject)); 2835public IAsyncResult BeginOpen(AsyncCallback callback, object state)
System\ServiceModel\Activities\IWorkflowInstanceManagement.cs (13)
24IAsyncResult BeginAbandon(Guid instanceId, string reason, AsyncCallback callback, object state); 34IAsyncResult BeginCancel(Guid instanceId, AsyncCallback callback, object state); 44IAsyncResult BeginRun(Guid instanceId, AsyncCallback callback, object state); 54IAsyncResult BeginSuspend(Guid instanceId, string reason, AsyncCallback callback, object state); 64IAsyncResult BeginTerminate(Guid instanceId, string reason, AsyncCallback callback, object state); 74IAsyncResult BeginUnsuspend(Guid instanceId, AsyncCallback callback, object state); 88IAsyncResult BeginTransactedCancel(Guid instanceId, AsyncCallback callback, object state); 99IAsyncResult BeginTransactedRun(Guid instanceId, AsyncCallback callback, object state); 110IAsyncResult BeginTransactedSuspend(Guid instanceId, string reason, AsyncCallback callback, object state); 121IAsyncResult BeginTransactedTerminate(Guid instanceId, string reason, AsyncCallback callback, object state); 132IAsyncResult BeginTransactedUnsuspend(Guid instanceId, AsyncCallback callback, object state); 148IAsyncResult BeginUpdate(Guid instanceId, WorkflowIdentity updatedDefinitionIdentity, AsyncCallback callback, object state); 159IAsyncResult BeginTransactedUpdate(Guid instanceId, WorkflowIdentity updatedDefinitionIdentity, AsyncCallback callback, object state);
System\ServiceModel\Activities\Tracking\TrackingProfileManager.cs (1)
21AsyncCallback callback,
System\ServiceModel\Activities\TransactedReceiveScope.cs (2)
29static AsyncCallback transactionCommitCallback; 78internal static AsyncCallback TransactionCommitAsyncCallback
System\ServiceModel\Activities\WorkflowControlClient.cs (25)
353public IAsyncResult BeginAbandon(Guid instanceId, AsyncCallback callback, object state) 358public IAsyncResult BeginAbandon(Guid instanceId, string reason, AsyncCallback callback, object state) 369public IAsyncResult BeginCancel(Guid instanceId, AsyncCallback callback, object state) 381public IAsyncResult BeginRun(Guid instanceId, AsyncCallback callback, object state) 393public IAsyncResult BeginSuspend(Guid instanceId, AsyncCallback callback, object state) 399public IAsyncResult BeginSuspend(Guid instanceId, string reason, AsyncCallback callback, object state) 411public IAsyncResult BeginUnsuspend(Guid instanceId, AsyncCallback callback, object state) 423public IAsyncResult BeginTerminate(Guid instanceId, AsyncCallback callback, object state) 429public IAsyncResult BeginTerminate(Guid instanceId, string reason, AsyncCallback callback, object state) 452IAsyncResult OnBeginAbandon(object[] inputs, AsyncCallback callback, object state) 475IAsyncResult OnBeginCancel(object[] inputs, AsyncCallback callback, object state) 497IAsyncResult OnBeginRun(object[] inputs, AsyncCallback callback, object state) 517IAsyncResult OnBeginSuspend(object[] inputs, AsyncCallback callback, object state) 537IAsyncResult OnBeginUnsuspend(object[] inputs, AsyncCallback callback, object state) 558IAsyncResult OnBeginTerminate(object[] inputs, AsyncCallback callback, object state) 576AsyncCallback callback, object state) 596AsyncCallback callback = this.PrepareAsyncCompletion(handleEndCancel); 637AsyncCallback callback, object state) 658AsyncCallback callback = this.PrepareAsyncCompletion(handleEndResume); 698Guid instanceId, string reason, AsyncCallback callback, object state) 718AsyncCallback callback = this.PrepareAsyncCompletion(handleEndSuspend); 759Guid instanceId, AsyncCallback callback, object state) 779AsyncCallback callback = this.PrepareAsyncCompletion(handleEndUnsuspend); 820Guid instanceId, string reason, AsyncCallback callback, object state) 840AsyncCallback callback = this.PrepareAsyncCompletion(handleEndTerminate);
System\ServiceModel\Activities\WorkflowCreationContext.cs (1)
58Exception terminationException, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activities\WorkflowHostingResponseContext.cs (3)
64internal IAsyncResult BeginGetResponse(TimeSpan timeout, AsyncCallback callback, object state) 81GetResponseAsyncResult(WorkflowHostingResponseContext context, TimeSpan timeout, AsyncCallback callback, object state) 91public static GetResponseAsyncResult Create(WorkflowHostingResponseContext context, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activities\WorkflowOperationContext.cs (4)
72TimeSpan timeout, AsyncCallback callback, object state) 202WorkflowOperationBehavior behavior, ServiceEndpoint endpoint, TimeSpan timeout, AsyncCallback callback, object state) 812ReceiveContextAsyncResult(WorkflowOperationContext context, ReceiveContext receiveContext, AsyncCallback callback, object state) 824public static IAsyncResult BeginProcessReceiveContext(WorkflowOperationContext context, ReceiveContext receiveContext, AsyncCallback callback, object state)
System\ServiceModel\Activities\WorkflowServiceHost.cs (4)
528internal override IAsyncResult BeginAfterInitializeRuntime(TimeSpan timeout, AsyncCallback callback, object state) 549protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 576IAsyncResult BeginHostClose(TimeSpan timeout, AsyncCallback callback, object state) 781public CloseAsyncResult(WorkflowServiceHost host, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Activities\WorkflowUpdateableControlClient.cs (29)
392public IAsyncResult BeginAbandon(Guid instanceId, AsyncCallback callback, object state) 397public IAsyncResult BeginAbandon(Guid instanceId, string reason, AsyncCallback callback, object state) 408public IAsyncResult BeginCancel(Guid instanceId, AsyncCallback callback, object state) 420public IAsyncResult BeginRun(Guid instanceId, AsyncCallback callback, object state) 432public IAsyncResult BeginSuspend(Guid instanceId, AsyncCallback callback, object state) 438public IAsyncResult BeginSuspend(Guid instanceId, string reason, AsyncCallback callback, object state) 450public IAsyncResult BeginUnsuspend(Guid instanceId, AsyncCallback callback, object state) 462public IAsyncResult BeginTerminate(Guid instanceId, AsyncCallback callback, object state) 468public IAsyncResult BeginTerminate(Guid instanceId, string reason, AsyncCallback callback, object state) 480public IAsyncResult BeginUpdate(Guid instanceId, WorkflowIdentity updatedDefinitionIdentity, AsyncCallback callback, object state) 503IAsyncResult OnBeginAbandon(object[] inputs, AsyncCallback callback, object state) 526IAsyncResult OnBeginCancel(object[] inputs, AsyncCallback callback, object state) 548IAsyncResult OnBeginRun(object[] inputs, AsyncCallback callback, object state) 568IAsyncResult OnBeginSuspend(object[] inputs, AsyncCallback callback, object state) 588IAsyncResult OnBeginUnsuspend(object[] inputs, AsyncCallback callback, object state) 609IAsyncResult OnBeginTerminate(object[] inputs, AsyncCallback callback, object state) 631IAsyncResult OnBeginUpdate(object[] inputs, AsyncCallback callback, object state) 648AsyncCallback callback, object state) 668AsyncCallback callback = this.PrepareAsyncCompletion(handleEndCancel); 709AsyncCallback callback, object state) 730AsyncCallback callback = this.PrepareAsyncCompletion(handleEndResume); 770Guid instanceId, string reason, AsyncCallback callback, object state) 790AsyncCallback callback = this.PrepareAsyncCompletion(handleEndSuspend); 831Guid instanceId, AsyncCallback callback, object state) 851AsyncCallback callback = this.PrepareAsyncCompletion(handleEndUnsuspend); 892Guid instanceId, string reason, AsyncCallback callback, object state) 912AsyncCallback callback = this.PrepareAsyncCompletion(handleEndTerminate); 952AsyncCallback callback, object state) 973AsyncCallback callback = this.PrepareAsyncCompletion(handleEndUpdate);
System.ServiceModel.Channels (44)
System\ServiceModel\Channels\ByteStreamMessage.cs (5)
363protected override IAsyncResult OnBeginWriteMessage(XmlDictionaryWriter writer, AsyncCallback callback, object state) 379protected override IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 394public OnWriteMessageAsyncResult(XmlDictionaryWriter writer, InternalByteStreamMessage message, AsyncCallback callback, object state) 501protected override IAsyncResult OnBeginWriteBodyContents(XmlDictionaryWriter writer, AsyncCallback callback, object state) 537public WriteBodyContentsAsyncResult(XmlDictionaryWriter writer, Stream stream, AsyncCallback callback, object state)
System\ServiceModel\Channels\ByteStreamMessageEncoder.cs (2)
171public override IAsyncResult BeginWriteMessage(Message message, Stream stream, AsyncCallback callback, object state) 306public WriteMessageAsyncResult(Message message, Stream stream, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpChannelBase.cs (3)
323protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 339protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 436public CloseAsyncResult(UdpChannelBase<T> channel, ChainedBeginHandler baseBeginClose, ChainedEndHandler baseEndClose, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpChannelFactory.cs (1)
73protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpChannelListener.cs (4)
271protected override IAsyncResult OnBeginAcceptChannel(TimeSpan timeout, AsyncCallback callback, object state) 281protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 287protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 293protected override IAsyncResult OnBeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpDuplexChannel.cs (6)
50public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 55public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 110public IAsyncResult BeginReceive(AsyncCallback callback, object state) 115public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 142public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 169public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpOutputChannel.cs (6)
175protected override IAsyncResult OnBeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 298protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 318protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 635private static AsyncCallback onSocketSendComplete = Fx.ThunkCallback(new AsyncCallback(OnSocketSendComplete)); 649public SendAsyncResult(UdpOutputChannel channel, Message message, TimeSpan timeout, AsyncCallback callback, object state) 950public CloseAsyncResult(UdpOutputChannel channel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpReplyChannel.cs (7)
75public IAsyncResult BeginReceiveRequest(AsyncCallback callback, object state) 80public IAsyncResult BeginReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 107public IAsyncResult BeginTryReceiveRequest(TimeSpan timeout, AsyncCallback callback, object state) 134public IAsyncResult BeginWaitForRequest(TimeSpan timeout, AsyncCallback callback, object state) 169private static IAsyncResult HelpBeginReceiveRequest(IReplyChannel channel, TimeSpan timeout, AsyncCallback callback, object state) 193private static AsyncCallback onReceiveRequest = Fx.ThunkCallback(new AsyncCallback(OnReceiveRequest)); 198public HelpReceiveRequestAsyncResult(IReplyChannel channel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpRequestContext.cs (1)
44protected override IAsyncResult OnBeginReply(Message message, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Channels\UdpSocket.cs (6)
79public IAsyncResult BeginReceiveFrom(byte[] buffer, int offset, int size, ref EndPoint remoteEndPoint, AsyncCallback callback, object state) 198public IAsyncResult BeginSendTo(byte[] buffer, int offset, int size, EndPoint remoteEndPoint, AsyncCallback callback, object state) 286static AsyncCallback onSendToComplete = Fx.ThunkCallback(OnSendToComplete); 288public SendToAsyncResult(Socket socket, byte[] buffer, int offset, int size, EndPoint remoteEndPoint, int timeToLive, AsyncCallback callback, object state) 358static AsyncCallback onReceiveMessageFromCallback = Fx.ThunkCallback(new AsyncCallback(OnReceiveMessageFrom)); 361public ReceiveFromAsyncResult(Socket socket, ArraySegment<byte> buffer, EndPoint remoteEndPoint, int messageSize, int timeToLive, AsyncCallback userCallback, object userState) :
System\ServiceModel\Channels\UdpSocketReceiveManager.cs (1)
19AsyncCallback onReceiveFrom;
System\ServiceModel\Channels\XmlByteStreamWriter.cs (2)
133internal IAsyncResult BeginWriteBase64(byte[] buffer, int index, int count, AsyncCallback callback, object state) 148public WriteBase64AsyncResult(byte[] buffer, int index, int count, XmlByteStreamWriter writer, AsyncCallback callback, object state)
System.ServiceModel.Discovery (239)
System\ServiceModel\Discovery\AnnouncementClient.cs (6)
370public IAsyncResult BeginAnnounceOnline(EndpointDiscoveryMetadata discoveryMetadata, AsyncCallback callback, object state) 404public IAsyncResult BeginAnnounceOffline(EndpointDiscoveryMetadata discoveryMetadata, AsyncCallback callback, object state) 446IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state) 452IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 478IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state) 484IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\AnnouncementDispatcherAsyncResult.cs (2)
18AsyncCallback onAnnouncementSendsCompletedCallback; 33AsyncCallback callback,
System\ServiceModel\Discovery\AnnouncementSendsAsyncResult.cs (2)
25AsyncCallback callback, 36protected override IAsyncResult OnBeginSend(int index, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\AnnouncementService.cs (10)
52IAsyncResult IAnnouncementContractApril2005.BeginHelloOperation(HelloMessageApril2005 message, AsyncCallback callback, object state) 67IAsyncResult IAnnouncementContractApril2005.BeginByeOperation(ByeMessageApril2005 message, AsyncCallback callback, object state) 82IAsyncResult IAnnouncementContract11.BeginHelloOperation(HelloMessage11 message, AsyncCallback callback, object state) 97IAsyncResult IAnnouncementContract11.BeginByeOperation(ByeMessage11 message, AsyncCallback callback, object state) 112IAsyncResult IAnnouncementContractCD1.BeginHelloOperation(HelloMessageCD1 message, AsyncCallback callback, object state) 127IAsyncResult IAnnouncementContractCD1.BeginByeOperation(ByeMessageCD1 message, AsyncCallback callback, object state) 145AsyncCallback callback, 159AsyncCallback callback, 173AsyncCallback callback, 193AsyncCallback callback,
System\ServiceModel\Discovery\AsyncOperationLifetimeManager.cs (2)
198public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 233internal CloseAsyncResult(AsyncWaitHandle asyncWaitHandle, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\ByeOperationAsyncResult.cs (1)
25AsyncCallback callback,
System\ServiceModel\Discovery\DefaultDiscoveryService.cs (2)
27AsyncCallback callback, 39protected override IAsyncResult OnBeginResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClient.cs (8)
34AsyncCallback probeOperationCallbackDelegate; 35AsyncCallback resolveOperationCallbackDelegate; 262IAsyncResult ICommunicationObject.BeginOpen(AsyncCallback callback, object state) 269IAsyncResult ICommunicationObject.BeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 335IAsyncResult ICommunicationObject.BeginClose(AsyncCallback callback, object state) 342IAsyncResult ICommunicationObject.BeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1199internal CloseAsyncResult(AsyncCallback callback, object state) 1205internal CloseAsyncResult(DiscoveryClient client, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClientChannelBase.cs (4)
86protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 118protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 448AsyncCallback callback, 652public CloseAsyncResult(TChannel innerChannel, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClientChannelFactory.cs (2)
114protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 129protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClientDuplexChannel.cs (5)
35public override IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 47public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 52public IAsyncResult BeginReceive(AsyncCallback callback, object state) 57public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 62public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClientOutputChannel.cs (2)
49public virtual IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 54public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryClientRequestChannel.cs (2)
49public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 54public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Discovery\DiscoveryProxy.cs (28)
71IAsyncResult IAnnouncementContractApril2005.BeginHelloOperation(HelloMessageApril2005 message, AsyncCallback callback, object state) 86IAsyncResult IAnnouncementContractApril2005.BeginByeOperation(ByeMessageApril2005 message, AsyncCallback callback, object state) 101IAsyncResult IAnnouncementContract11.BeginHelloOperation(HelloMessage11 message, AsyncCallback callback, object state) 116IAsyncResult IAnnouncementContract11.BeginByeOperation(ByeMessage11 message, AsyncCallback callback, object state) 131IAsyncResult IAnnouncementContractCD1.BeginHelloOperation(HelloMessageCD1 message, AsyncCallback callback, object state) 146IAsyncResult IAnnouncementContractCD1.BeginByeOperation(ByeMessageCD1 message, AsyncCallback callback, object state) 161IAsyncResult IDiscoveryContractApril2005.BeginProbeOperation(ProbeMessageApril2005 request, AsyncCallback callback, object state) 176IAsyncResult IDiscoveryContractApril2005.BeginResolveOperation(ResolveMessageApril2005 request, AsyncCallback callback, object state) 191IAsyncResult IDiscoveryContractAdhoc11.BeginProbeOperation(ProbeMessage11 request, AsyncCallback callback, object state) 206IAsyncResult IDiscoveryContractAdhoc11.BeginResolveOperation(ResolveMessage11 request, AsyncCallback callback, object state) 222IAsyncResult IDiscoveryContractManaged11.BeginProbeOperation(ProbeMessage11 request, AsyncCallback callback, object state) 238IAsyncResult IDiscoveryContractManaged11.BeginResolveOperation(ResolveMessage11 request, AsyncCallback callback, object state) 253IAsyncResult IDiscoveryContractAdhocCD1.BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state) 268IAsyncResult IDiscoveryContractAdhocCD1.BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state) 284IAsyncResult IDiscoveryContractManagedCD1.BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state) 300IAsyncResult IDiscoveryContractManagedCD1.BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state) 318AsyncCallback callback, 332AsyncCallback callback, 353IAsyncResult IDiscoveryServiceImplementation.BeginFind(FindRequestContext findRequestContext, AsyncCallback callback, object state) 363IAsyncResult IDiscoveryServiceImplementation.BeginResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state) 373IAsyncResult IMulticastSuppressionImplementation.BeginShouldRedirectFind(FindCriteria findCriteria, AsyncCallback callback, object state) 383IAsyncResult IMulticastSuppressionImplementation.BeginShouldRedirectResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state) 393protected virtual IAsyncResult BeginShouldRedirectFind(FindCriteria resolveCriteria, AsyncCallback callback, object state) 405protected virtual IAsyncResult BeginShouldRedirectResolve(ResolveCriteria findCriteria, AsyncCallback callback, object state) 421AsyncCallback callback, 428AsyncCallback callback, 432protected abstract IAsyncResult OnBeginFind(FindRequestContext findRequestContext, AsyncCallback callback, object state); 435protected abstract IAsyncResult OnBeginResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state);
System\ServiceModel\Discovery\DiscoveryService.cs (14)
75IAsyncResult IDiscoveryContractApril2005.BeginProbeOperation(ProbeMessageApril2005 request, AsyncCallback callback, object state) 90IAsyncResult IDiscoveryContractApril2005.BeginResolveOperation(ResolveMessageApril2005 request, AsyncCallback callback, object state) 105IAsyncResult IDiscoveryContractAdhoc11.BeginProbeOperation(ProbeMessage11 request, AsyncCallback callback, object state) 120IAsyncResult IDiscoveryContractAdhoc11.BeginResolveOperation(ResolveMessage11 request, AsyncCallback callback, object state) 136IAsyncResult IDiscoveryContractManaged11.BeginProbeOperation(ProbeMessage11 request, AsyncCallback callback, object state) 153IAsyncResult IDiscoveryContractManaged11.BeginResolveOperation(ResolveMessage11 request, AsyncCallback callback, object state) 168IAsyncResult IDiscoveryContractAdhocCD1.BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state) 183IAsyncResult IDiscoveryContractAdhocCD1.BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state) 199IAsyncResult IDiscoveryContractManagedCD1.BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state) 215IAsyncResult IDiscoveryContractManagedCD1.BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state) 235IAsyncResult IDiscoveryServiceImplementation.BeginFind(FindRequestContext findRequestContext, AsyncCallback callback, object state) 245IAsyncResult IDiscoveryServiceImplementation.BeginResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state) 293protected abstract IAsyncResult OnBeginFind(FindRequestContext findRequestContext, AsyncCallback callback, object state); 296protected abstract IAsyncResult OnBeginResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state);
System\ServiceModel\Discovery\HelloOperationAsyncResult.cs (1)
25AsyncCallback callback,
System\ServiceModel\Discovery\IAnnouncementInnerClient.cs (2)
22IAsyncResult BeginHelloOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state); 25IAsyncResult BeginByeOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state);
System\ServiceModel\Discovery\IAnnouncementServiceImplementation.cs (2)
16AsyncCallback callback, 23AsyncCallback callback,
System\ServiceModel\Discovery\IDiscoveryInnerClient.cs (2)
24IAsyncResult BeginProbeOperation(FindCriteria findCriteria, AsyncCallback callback, object state); 25IAsyncResult BeginResolveOperation(ResolveCriteria resolveCriteria, AsyncCallback callback, object state);
System\ServiceModel\Discovery\IDiscoveryRequestContext.cs (3)
16IAsyncResult BeginSendFindResponse(Collection<EndpointDiscoveryMetadata> matchingEndpoints, AsyncCallback callback, object state); 19IAsyncResult BeginSendResolveResponse(EndpointDiscoveryMetadata matchingEndpoint, AsyncCallback callback, object state); 22IAsyncResult BeginSendProxyAnnouncements(Collection<EndpointDiscoveryMetadata> proxyAnnouncementEndpoints, AsyncCallback callback, object state);
System\ServiceModel\Discovery\IDiscoveryServiceImplementation.cs (2)
15IAsyncResult BeginFind(FindRequestContext findRequestContext, AsyncCallback callback, object state); 18IAsyncResult BeginResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state);
System\ServiceModel\Discovery\IMulticastSuppressionImplementation.cs (2)
11IAsyncResult BeginShouldRedirectFind(FindCriteria findCriteria, AsyncCallback callback, object state); 14IAsyncResult BeginShouldRedirectResolve(ResolveCriteria resolveCriteria, AsyncCallback callback, object state);
System\ServiceModel\Discovery\IteratorAsyncResult.cs (3)
21AsyncCallback onStepCompletedCallback; 23protected IteratorAsyncResult(AsyncCallback callback, object state) 268AsyncCallback asyncCallback,
System\ServiceModel\Discovery\OfflineAnnouncementChannelDispatcher.cs (5)
63protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 78protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 151protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 171protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 185public IAsyncResult BeginWaitForChannel(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\OnlineAnnouncementChannelDispatcher.cs (2)
112protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 158protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\ProbeDuplexAsyncResult.cs (10)
21static AsyncCallback onFindCompletedCallback = Fx.ThunkCallback(new AsyncCallback(OnFindCompleted)); 36AsyncCallback callback, 99AsyncCallback callback, 107AsyncCallback callback, 276AsyncCallback callback, 306AsyncCallback callback, 341AsyncCallback callback, 359protected override IAsyncResult OnBeginSend(int index, TimeSpan timeout, AsyncCallback callback, object state) 380AsyncCallback callback, 400AsyncCallback callback,
System\ServiceModel\Discovery\ProbeRequestResponseAsyncResult.cs (1)
27AsyncCallback callback,
System\ServiceModel\Discovery\RandomDelayQueuedSendsAsyncResult.cs (4)
31AsyncCallback callback, 54public IAsyncResult BeginDelay(AsyncCallback callback, object state) 92AsyncCallback callback, 181AsyncCallback callback,
System\ServiceModel\Discovery\RandomDelaySendsAsyncResult.cs (6)
19AsyncCallback onSendCompletedCallback; 20AsyncCallback onCloseCompletedCallback; 36protected RandomDelaySendsAsyncResult(int numSends, TimeSpan maxDelay, AsyncCallback callback, object state) 41protected RandomDelaySendsAsyncResult(int numSends, TimeSpan maxDelay, ICommunicationObject channel, AsyncCallback callback, object state) 46protected RandomDelaySendsAsyncResult(int numSends, TimeSpan maxDelay, ICommunicationObject channel, Random random, AsyncCallback callback, object state) 321protected abstract IAsyncResult OnBeginSend(int index, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Discovery\ResolveDuplexAsyncResult.cs (6)
30AsyncCallback callback, 92AsyncCallback callback, 100AsyncCallback callback, 246AsyncCallback callback, 281AsyncCallback callback, 299protected override IAsyncResult OnBeginSend(int index, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Discovery\ResolveRequestResponseAsyncResult.cs (1)
23AsyncCallback callback,
System\ServiceModel\Discovery\UdpContractFilterBehavior.cs (1)
66public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Discovery\Version11\AnnouncementInnerClient11.cs (6)
114public IAsyncResult BeginHelloOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state) 125public IAsyncResult BeginByeOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state) 184IAsyncResult BeginHelloOperation(HelloMessage11 message, AsyncCallback callback, object state) 189IAsyncResult BeginByeOperation(ByeMessage11 message, AsyncCallback callback, object state) 195IAsyncResult OnBeginHelloOperation(object[] inValues, System.AsyncCallback callback, object asyncState) 216IAsyncResult OnBeginByeOperation(object[] inValues, System.AsyncCallback callback, object asyncState)
System\ServiceModel\Discovery\Version11\ByeOperation11AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\Version11\DiscoveryInnerClientAdhoc11.cs (7)
78public IAsyncResult BeginProbeOperation(FindCriteria findCriteria, AsyncCallback callback, object state) 85public IAsyncResult BeginResolveOperation(ResolveCriteria resolveCriteria, AsyncCallback callback, object state) 116public IAsyncResult BeginProbeMatchOperation(ProbeMatchesMessage11 response, AsyncCallback callback, object state) 145public IAsyncResult BeginResolveMatchOperation(ResolveMatchesMessage11 response, AsyncCallback callback, object state) 173public IAsyncResult BeginHelloOperation(HelloMessage11 message, AsyncCallback callback, object state) 218public IAsyncResult BeginProbeOperation(ProbeMessage11 request, AsyncCallback callback, object state) 223public IAsyncResult BeginResolveOperation(ResolveMessage11 request, AsyncCallback callback, object state)
System\ServiceModel\Discovery\Version11\DiscoveryInnerClientManaged11.cs (2)
72public IAsyncResult BeginProbeOperation(FindCriteria findCriteria, AsyncCallback callback, object state) 79public IAsyncResult BeginResolveOperation(ResolveCriteria resolveCriteria, AsyncCallback callback, object state)
System\ServiceModel\Discovery\Version11\HelloOperation11AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\Version11\IAnnouncementContract11.cs (2)
19IAsyncResult BeginHelloOperation(HelloMessage11 message, AsyncCallback callback, Object state); 27IAsyncResult BeginByeOperation(ByeMessage11 message, AsyncCallback callback, Object state);
System\ServiceModel\Discovery\Version11\IDiscoveryContractAdhoc11.cs (2)
19IAsyncResult BeginProbeOperation(ProbeMessage11 request, AsyncCallback callback, object state); 27IAsyncResult BeginResolveOperation(ResolveMessage11 request, AsyncCallback callback, object state);
System\ServiceModel\Discovery\Version11\IDiscoveryContractManaged11.cs (2)
18IAsyncResult BeginProbeOperation(ProbeMessage11 request, AsyncCallback callback, object state); 26IAsyncResult BeginResolveOperation(ResolveMessage11 request, AsyncCallback callback, object state);
System\ServiceModel\Discovery\Version11\IDiscoveryResponseContract11.cs (3)
15IAsyncResult BeginProbeMatchOperation(ProbeMatchesMessage11 response, AsyncCallback callback, object state); 20IAsyncResult BeginResolveMatchOperation(ResolveMatchesMessage11 response, AsyncCallback callback, object state); 25IAsyncResult BeginHelloOperation(HelloMessage11 message, AsyncCallback callback, object state);
System\ServiceModel\Discovery\Version11\ProbeDuplex11AsyncResult.cs (3)
14AsyncCallback callback, 48AsyncCallback callback, 68AsyncCallback callback,
System\ServiceModel\Discovery\Version11\ProbeRequestResponse11AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\Version11\ResolveDuplex11AsyncResult.cs (3)
14AsyncCallback callback, 48AsyncCallback callback, 68AsyncCallback callback,
System\ServiceModel\Discovery\Version11\ResolveRequestResponse11AsyncResult.cs (1)
13AsyncCallback callback,
System\ServiceModel\Discovery\VersionApril2005\AnnouncementInnerClientApril2005.cs (6)
115public IAsyncResult BeginHelloOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state) 121IAsyncResult BeginHelloOperation(HelloMessageApril2005 message, AsyncCallback callback, object state) 131public IAsyncResult BeginByeOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state) 137IAsyncResult BeginByeOperation(ByeMessageApril2005 message, AsyncCallback callback, object state) 147IAsyncResult OnBeginHelloOperation(object[] inValues, System.AsyncCallback callback, object asyncState) 192IAsyncResult OnBeginByeOperation(object[] inValues, System.AsyncCallback callback, object asyncState)
System\ServiceModel\Discovery\VersionApril2005\ByeOperationApril2005AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\VersionApril2005\DiscoveryInnerClientApril2005.cs (7)
79public IAsyncResult BeginProbeOperation(FindCriteria findCriteria, AsyncCallback callback, object state) 86public IAsyncResult BeginResolveOperation(ResolveCriteria resolveCriteria, AsyncCallback callback, object state) 117public IAsyncResult BeginProbeMatchOperation(ProbeMatchesMessageApril2005 response, AsyncCallback callback, object state) 136public IAsyncResult BeginResolveMatchOperation(ResolveMatchesMessageApril2005 response, AsyncCallback callback, object state) 154public IAsyncResult BeginHelloOperation(HelloMessageApril2005 message, AsyncCallback callback, object state) 198public IAsyncResult BeginProbeOperation(ProbeMessageApril2005 request, AsyncCallback callback, object state) 203public IAsyncResult BeginResolveOperation(ResolveMessageApril2005 request, AsyncCallback callback, object state)
System\ServiceModel\Discovery\VersionApril2005\HelloOperationApril2005AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\VersionApril2005\IAnnouncementContractApril2005.cs (2)
19IAsyncResult BeginHelloOperation(HelloMessageApril2005 message, AsyncCallback callback, Object state); 27IAsyncResult BeginByeOperation(ByeMessageApril2005 message, AsyncCallback callback, Object state);
System\ServiceModel\Discovery\VersionApril2005\IDiscoveryContractApril2005.cs (2)
18IAsyncResult BeginProbeOperation(ProbeMessageApril2005 request, AsyncCallback callback, object state); 26IAsyncResult BeginResolveOperation(ResolveMessageApril2005 request, AsyncCallback callback, object state);
System\ServiceModel\Discovery\VersionApril2005\IDiscoveryResponseContractApril2005.cs (3)
15IAsyncResult BeginProbeMatchOperation(ProbeMatchesMessageApril2005 response, AsyncCallback callback, object state); 20IAsyncResult BeginResolveMatchOperation(ResolveMatchesMessageApril2005 response, AsyncCallback callback, object state); 25IAsyncResult BeginHelloOperation(HelloMessageApril2005 message, AsyncCallback callback, object state);
System\ServiceModel\Discovery\VersionApril2005\ProbeDuplexApril2005AsyncResult.cs (3)
14AsyncCallback callback, 48AsyncCallback callback, 68AsyncCallback callback,
System\ServiceModel\Discovery\VersionApril2005\ResolveDuplexApril2005AsyncResult.cs (3)
14AsyncCallback callback, 48AsyncCallback callback, 68AsyncCallback callback,
System\ServiceModel\Discovery\VersionCD1\AnnouncementInnerClientCD1.cs (6)
114public IAsyncResult BeginHelloOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state) 125public IAsyncResult BeginByeOperation(EndpointDiscoveryMetadata endpointDiscoveryMetadata, AsyncCallback callback, object state) 184IAsyncResult BeginHelloOperation(HelloMessageCD1 message, AsyncCallback callback, object state) 189IAsyncResult BeginByeOperation(ByeMessageCD1 message, AsyncCallback callback, object state) 195IAsyncResult OnBeginHelloOperation(object[] inValues, System.AsyncCallback callback, object asyncState) 216IAsyncResult OnBeginByeOperation(object[] inValues, System.AsyncCallback callback, object asyncState)
System\ServiceModel\Discovery\VersionCD1\ByeOperationCD1AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\VersionCD1\DiscoveryInnerClientAdhocCD1.cs (7)
78public IAsyncResult BeginProbeOperation(FindCriteria findCriteria, AsyncCallback callback, object state) 85public IAsyncResult BeginResolveOperation(ResolveCriteria resolveCriteria, AsyncCallback callback, object state) 116public IAsyncResult BeginProbeMatchOperation(ProbeMatchesMessageCD1 response, AsyncCallback callback, object state) 145public IAsyncResult BeginResolveMatchOperation(ResolveMatchesMessageCD1 response, AsyncCallback callback, object state) 172public IAsyncResult BeginHelloOperation(HelloMessageCD1 message, AsyncCallback callback, object state) 216public IAsyncResult BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state) 221public IAsyncResult BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state)
System\ServiceModel\Discovery\VersionCD1\DiscoveryInnerClientManagedCD1.cs (2)
72public IAsyncResult BeginProbeOperation(FindCriteria findCriteria, AsyncCallback callback, object state) 79public IAsyncResult BeginResolveOperation(ResolveCriteria resolveCriteria, AsyncCallback callback, object state)
System\ServiceModel\Discovery\VersionCD1\HelloOperationCD1AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\VersionCD1\IAnnouncementContractCD1.cs (2)
19IAsyncResult BeginHelloOperation(HelloMessageCD1 message, AsyncCallback callback, Object state); 27IAsyncResult BeginByeOperation(ByeMessageCD1 message, AsyncCallback callback, Object state);
System\ServiceModel\Discovery\VersionCD1\IDiscoveryContractAdhocCD1.cs (2)
19IAsyncResult BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state); 27IAsyncResult BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state);
System\ServiceModel\Discovery\VersionCD1\IDiscoveryContractManagedCD1.cs (2)
18IAsyncResult BeginProbeOperation(ProbeMessageCD1 request, AsyncCallback callback, object state); 26IAsyncResult BeginResolveOperation(ResolveMessageCD1 request, AsyncCallback callback, object state);
System\ServiceModel\Discovery\VersionCD1\IDiscoveryResponseContractCD1.cs (3)
15IAsyncResult BeginProbeMatchOperation(ProbeMatchesMessageCD1 response, AsyncCallback callback, object state); 20IAsyncResult BeginResolveMatchOperation(ResolveMatchesMessageCD1 response, AsyncCallback callback, object state); 25IAsyncResult BeginHelloOperation(HelloMessageCD1 message, AsyncCallback callback, object state);
System\ServiceModel\Discovery\VersionCD1\ProbeDuplexCD1AsyncResult.cs (3)
14AsyncCallback callback, 48AsyncCallback callback, 68AsyncCallback callback,
System\ServiceModel\Discovery\VersionCD1\ProbeRequestResponseCD1AsyncResult.cs (1)
14AsyncCallback callback,
System\ServiceModel\Discovery\VersionCD1\ResolveDuplexCD1AsyncResult.cs (3)
14AsyncCallback callback, 48AsyncCallback callback, 68AsyncCallback callback,
System\ServiceModel\Discovery\VersionCD1\ResolveRequestResponseCD1AsyncResult.cs (1)
13AsyncCallback callback,
System.ServiceModel.Internals (25)
System\Runtime\AsyncResult.cs (5)
16static AsyncCallback asyncCompletionWrapperCallback; 17AsyncCallback callback; 39protected AsyncResult(AsyncCallback callback, object state) 115protected Action<AsyncCallback, IAsyncResult> VirtualCallback 271protected AsyncCallback PrepareAsyncCompletion(AsyncCompletion callback)
System\Runtime\BufferedOutputStream.cs (2)
138public override IAsyncResult BeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, object state) 148public override IAsyncResult BeginWrite(byte[] buffer, int offset, int size, AsyncCallback callback, object state)
System\Runtime\CompletedAsyncResult.cs (3)
13public CompletedAsyncResult(AsyncCallback callback, object state) 31public CompletedAsyncResult(T data, AsyncCallback callback, object state) 52public CompletedAsyncResult(TResult resultData, TParameter parameter, AsyncCallback callback, object state)
System\Runtime\Fx.cs (5)
368public static AsyncCallback ThunkCallback(AsyncCallback callback) 1084sealed class AsyncThunk : Thunk<AsyncCallback> 1086public AsyncThunk(AsyncCallback callback) : base(callback) 1090public AsyncCallback ThunkFrame
System\Runtime\InputQueue.cs (6)
39public InputQueue(Func<Action<AsyncCallback, IAsyncResult>> asyncCallbackGenerator) 65Func<Action<AsyncCallback, IAsyncResult>> AsyncCallbackGenerator 76public IAsyncResult BeginDequeue(TimeSpan timeout, AsyncCallback callback, object state) 114public IAsyncResult BeginWaitForItem(TimeSpan timeout, AsyncCallback callback, object state) 805public AsyncQueueReader(InputQueue<T> inputQueue, TimeSpan timeout, AsyncCallback callback, object state) 869public AsyncQueueWaiter(TimeSpan timeout, AsyncCallback callback, object state) : base(callback, state)
System\Runtime\ScheduleActionItemAsyncResult.cs (1)
20protected ScheduleActionItemAsyncResult(AsyncCallback callback, object state) : base(callback, state) { }
System\Runtime\TaskExtensions.cs (2)
13public static IAsyncResult AsAsyncResult<T>(this Task<T> task, AsyncCallback callback, object state) 55public static IAsyncResult AsAsyncResult(this Task task, AsyncCallback callback, object state)
System\Runtime\TypedAsyncResult.cs (1)
10public TypedAsyncResult(AsyncCallback callback, object state)
System.ServiceModel.Routing (38)
System\ServiceModel\Channels\SynchronousSendBindingElement.cs (10)
80protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 139protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 159public IAsyncResult BeginReceive(TimeSpan timeout, AsyncCallback callback, object state) 164public IAsyncResult BeginReceive(AsyncCallback callback, object state) 169public IAsyncResult BeginTryReceive(TimeSpan timeout, AsyncCallback callback, object state) 174public IAsyncResult BeginWaitForMessage(TimeSpan timeout, AsyncCallback callback, object state) 249public IAsyncResult BeginSend(Message message, TimeSpan timeout, AsyncCallback callback, object state) 255public IAsyncResult BeginSend(Message message, AsyncCallback callback, object state) 316public IAsyncResult BeginRequest(Message message, TimeSpan timeout, AsyncCallback callback, object state) 322public IAsyncResult BeginRequest(Message message, AsyncCallback callback, object state)
System\ServiceModel\Routing\ClientFactory.cs (9)
152public IAsyncResult BeginOperation(Message message, Transaction transaction, AsyncCallback callback, object state) 162protected abstract IAsyncResult OnBeginOperation(Message message, AsyncCallback callback, object state); 185public OperationAsyncResult(RoutingClientBase<TChannel> parent, Message requestMessage, Transaction transaction, AsyncCallback callback, object state) 327protected override IAsyncResult OnBeginOperation(Message message, AsyncCallback callback, object state) 346protected override IAsyncResult OnBeginOperation(Message message, AsyncCallback callback, object state) 365protected override IAsyncResult OnBeginOperation(Message message, AsyncCallback callback, object state) 392IAsyncResult IDuplexRouterCallback.BeginProcessMessage(Message message, AsyncCallback callback, object state) 433public CallbackAsyncResult(IDuplexRouterCallback callbackInstance, Message message, AsyncCallback callback, object state) 473protected override IAsyncResult OnBeginOperation(Message message, AsyncCallback callback, object state)
System\ServiceModel\Routing\IDuplexRouterCallback.cs (1)
16IAsyncResult BeginProcessMessage(Message message, AsyncCallback callback, object state);
System\ServiceModel\Routing\IDuplexSessionRouter.cs (1)
16IAsyncResult BeginProcessMessage(Message message, AsyncCallback callback, object state);
System\ServiceModel\Routing\IRequestReplyRouter.cs (1)
16IAsyncResult BeginProcessRequest(Message message, AsyncCallback callback, object state);
System\ServiceModel\Routing\IRoutingClient.cs (1)
13IAsyncResult BeginOperation(Message message, Transaction transaction, AsyncCallback callback, object state);
System\ServiceModel\Routing\ISimplexDatagramRouter.cs (1)
15IAsyncResult BeginProcessMessage(Message message, AsyncCallback callback, object state);
System\ServiceModel\Routing\ISimplexSessionRouter.cs (1)
15IAsyncResult BeginProcessMessage(Message message, AsyncCallback callback, object state);
System\ServiceModel\Routing\ProcessMessagesAsyncResult.cs (1)
35public ProcessMessagesAsyncResult(Message message, RoutingService service, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Routing\ProcessRequestAsyncResult.cs (1)
27public ProcessRequestAsyncResult(RoutingService service, Message message, AsyncCallback callback, object state)
System\ServiceModel\Routing\RoutingChannelExtension.cs (4)
18static AsyncCallback closeChannelsCallback = Fx.ThunkCallback(CloseChannelsCallback); 19static AsyncCallback shutdownCallback = Fx.ThunkCallback(ShutdownCallback); 126public abstract IAsyncResult BeginShutdown(RoutingService service, TimeSpan timeout, AsyncCallback callback, object state); 279public override IAsyncResult BeginShutdown(RoutingService service, TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Routing\RoutingService.cs (6)
226IAsyncResult ISimplexSessionRouter.BeginProcessMessage(Message message, AsyncCallback callback, object state) 237IAsyncResult IRequestReplyRouter.BeginProcessRequest(Message message, AsyncCallback callback, object state) 248IAsyncResult IDuplexSessionRouter.BeginProcessMessage(Message message, AsyncCallback callback, object state) 259IAsyncResult ISimplexDatagramRouter.BeginProcessMessage(Message message, AsyncCallback callback, object state) 269IAsyncResult BeginProcessMessage<TContract>(Message message, AsyncCallback callback, object state) 303IAsyncResult BeginProcessRequest<TContract>(Message message, AsyncCallback callback, object state)
System\ServiceModel\Routing\SessionChannels.cs (1)
43public IAsyncResult BeginClose(TimeSpan timeout, AsyncCallback callback, object state)
System.ServiceModel.Web (5)
System\ServiceModel\Channels\StreamBodyWriter.cs (1)
131public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
System\ServiceModel\Channels\WebMessageEncoderFactory.cs (2)
331public override IAsyncResult BeginWriteMessage(Message message, Stream stream, AsyncCallback callback, object state) 464public WriteMessageAsyncResult(Message message, Stream stream, WebMessageEncoder webMessageEncoder, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\HelpOperationInvoker.cs (1)
41public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\HttpUnhandledOperationInvoker.cs (1)
130public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System.Transactions (17)
System\Transactions\CommittableTransaction.cs (1)
70AsyncCallback asyncCallback,
System\Transactions\InternalTransaction.cs (1)
183internal AsyncCallback asyncCallback;
System\Transactions\TransactionState.cs (15)
786internal virtual void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 1332internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 2158internal override void BeginCommit(InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState) 2605internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 3182internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 3250internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 3499internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 3779internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 4168internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState ) 4348internal override void BeginCommit(InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState) 4517internal override void BeginCommit(InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState) 4612internal override void BeginCommit(InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState) 4697internal override void BeginCommit(InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState) 4931internal override void BeginCommit(InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState) 5548internal override void BeginCommit( InternalTransaction tx, bool asyncCommit, AsyncCallback asyncCallback, object asyncState )
System.Web (51)
Abstractions\HttpResponseBase.cs (1)
319public virtual IAsyncResult BeginFlush(AsyncCallback callback, Object state) {
Abstractions\HttpResponseWrapper.cs (1)
316public override IAsyncResult BeginFlush(AsyncCallback callback, Object state) {
Compilation\PageCodeDomTreeGenerator.cs (2)
461method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(AsyncCallback), "cb")); 519method.Parameters.Add(new CodeParameterDeclarationExpression(typeof(AsyncCallback), "cb"));
Configuration\RemoteWebConfigurationHostStream.cs (2)
137public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, object state) 143public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, object state)
DefaultHttpHandler.cs (1)
61public virtual IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback callback, Object state) {
Handlers\TransferRequestHandler.cs (1)
13public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, object extraData)
Hosting\AsyncResultBase.cs (2)
21private AsyncCallback _callback; 29protected AsyncResultBase(AsyncCallback cb, Object state) {
Hosting\FlushAsyncResult.cs (1)
19internal FlushAsyncResult(AsyncCallback cb, Object state): base(cb, state) {
Hosting\IIS7WorkerRequest.cs (2)
529public override IAsyncResult BeginFlush(AsyncCallback callback, Object state) { 596public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
Hosting\ISAPIWorkerRequest.cs (3)
2526public override IAsyncResult BeginFlush(AsyncCallback callback, Object state) { 2595public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 2693AsyncCallback cb, Object state) {
Hosting\ReadAsyncResult.cs (1)
25internal ReadAsyncResult(AsyncCallback cb, Object state, byte[] buffer, int offset, int count, bool updatePerfCounter): base(cb, state) {
HttpApplication.cs (5)
49public delegate IAsyncResult BeginEventHandler(object sender, EventArgs e, AsyncCallback cb, object extraData); 1464IAsyncResult IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) { 2745internal IAsyncResult BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) { 3100private AsyncCallback _completionCallback; 3412private AsyncCallback _completionCallback;
HttpAsyncResult.cs (3)
19private AsyncCallback _callback; 36internal HttpAsyncResult(AsyncCallback cb, Object state) { 45internal HttpAsyncResult(AsyncCallback cb, Object state,
HttpBufferlessInputStream.cs (1)
129public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
HttpResponse.cs (2)
733public IAsyncResult BeginFlush(AsyncCallback callback, Object state) { 2555AsyncCallback cb, Object state) {
HttpRuntime.cs (2)
228private AsyncCallback _requestNotificationCompletionCallback; 229private AsyncCallback _handlerCompletionCallback;
HttpTaskAsyncHandler.cs (1)
38IAsyncResult IHttpAsyncHandler.BeginProcessRequest(HttpContext context, AsyncCallback cb, object extraData) {
IHttpAsyncHandler.cs (1)
26IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData);
ImplicitAsyncPreloadModule.cs (2)
24AsyncCallback _callback; 39private IAsyncResult OnEnter(Object sender, EventArgs e, AsyncCallback cb, Object state) {
State\SessionStateModule.cs (1)
604IAsyncResult BeginAcquireState(Object source, EventArgs e, AsyncCallback cb, Object extraData) {
TaskAsyncHelper.cs (1)
21internal static IAsyncResult BeginTask(Func<Task> taskFunc, AsyncCallback callback, object state) {
UI\LegacyPageAsyncTask.cs (1)
32private AsyncCallback _completionCallback;
UI\LegacyPageAsyncTaskManager.cs (2)
139private IAsyncResult BeginExecuteAsyncTasks(object sender, EventArgs e, AsyncCallback cb, object extraData) { 147internal HttpAsyncResult ExecuteTasks(AsyncCallback callback, Object extraData) {
UI\Page.cs (4)
5664protected IAsyncResult AspCompatBeginProcessRequest(HttpContext context, AsyncCallback cb, Object extraData) { 5763private AsyncCallback _completionCallback; 5990protected IAsyncResult AsyncPageBeginProcessRequest(HttpContext context, AsyncCallback callback, Object extraData) { 6069private IAsyncResult LegacyAsyncPageBeginProcessRequest(HttpContext context, AsyncCallback callback, Object extraData) {
Util\AppVerifier.cs (4)
144public static Func<T, AsyncCallback, object, IAsyncResult> WrapBeginMethod<T>(HttpApplication httpApplication, Func<T, AsyncCallback, object, IAsyncResult> originalDelegate) { 184internal static Func<AsyncCallback, object, IAsyncResult> WrapBeginMethodImpl(HttpApplication httpApplication, Func<AsyncCallback, object, IAsyncResult> beginMethod, Delegate originalDelegate, Action<AppVerifierException> errorHandler, CallStackCollectionBitMasks callStackMask) {
Util\AspCompat.cs (1)
336internal /*public*/ IAsyncResult BeginAspCompatExecution(AsyncCallback cb, object extraData) {
WorkerRequest.cs (3)
758public virtual IAsyncResult BeginFlush(AsyncCallback callback, Object state) { 780public virtual IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 1025AsyncCallback cb, Object state) {
System.Web.Extensions (1)
Script\Services\ScriptHandlerFactory.cs (1)
50public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, object extraData) {
System.Web.Services (19)
System\Web\Services\Description\HttpProtocolImporter.cs (1)
190asyncParameterTypeNames[parameterTypeNames.Length] = typeof(AsyncCallback).FullName;
System\Web\Services\Description\SoapProtocolImporter.cs (1)
847asyncParameterTypes[inCount] = typeof(AsyncCallback).FullName;
System\Web\Services\Protocols\BufferedResponseStream.cs (1)
56public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
System\Web\Services\Protocols\ClientProtocol.cs (5)
53static AsyncCallback getRequestStreamAsyncCallback; 54static AsyncCallback getResponseAsyncCallback; 57static volatile AsyncCallback readResponseAsyncCallback; 540private AsyncCallback userCallback; 555AsyncCallback userCallback,
System\Web\Services\Protocols\HttpClientProtocol.cs (1)
184protected IAsyncResult BeginInvoke(string methodName, string requestUrl, object[] parameters, AsyncCallback callback, object asyncState) {
System\Web\Services\Protocols\LogicalMethodInfo.cs (3)
97beginParamInfos[beginParamInfos.Length - 2].ParameterType != typeof(AsyncCallback)) { 99typeof(AsyncCallback).FullName, typeof(object).FullName)); 167public IAsyncResult BeginInvoke(object target, object[] values, AsyncCallback callback, object asyncState) {
System\Web\Services\Protocols\SoapClientProtocol.cs (1)
333protected IAsyncResult BeginInvoke(string methodName, object[] parameters, AsyncCallback callback, object asyncState) {
System\Web\Services\Protocols\SoapExtensionStream.cs (2)
90public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) { 100public override IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback callback, Object state) {
System\Web\Services\Protocols\WebServiceHandler.cs (4)
33AsyncCallback asyncCallback; 243protected IAsyncResult BeginCoreProcessRequest(AsyncCallback callback, object asyncState) { 285private IAsyncResult BeginInvoke(AsyncCallback callback, object asyncState) { 406public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback callback, object asyncState) {
System.Workflow.Runtime (3)
System\Activities\Statements\Interop.cs (3)
1718protected override IAsyncResult BeginOnSave(IDictionary<XName, object> readWriteValues, IDictionary<System.Xml.Linq.XName, object> writeOnlyValues, TimeSpan timeout, AsyncCallback callback, object state) 1828AsyncCallback callback; 1834public CompletedAsyncResult(AsyncCallback callback, object state)
System.WorkflowServices (52)
System\ServiceModel\Dispatcher\DurableInstance.cs (2)
61protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 66protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ServiceDurableInstance.cs (11)
130public IAsyncResult BeginFinishOperation(bool completeInstance, bool performPersistence, Exception operationException, AsyncCallback callback, object state) 135public IAsyncResult BeginStartOperation(bool canCreateInstance, AsyncCallback callback, object state) 332protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 337protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 548static AsyncCallback createCallback = Fx.ThunkCallback(new AsyncCallback(CreateComplete)); 549static AsyncCallback deleteCallback = Fx.ThunkCallback(new AsyncCallback(DeleteComplete)); 550static AsyncCallback unlockCallback = Fx.ThunkCallback(new AsyncCallback(UnlockComplete)); 551static AsyncCallback updateCallback = Fx.ThunkCallback(new AsyncCallback(UpdateComplete)); 555public FinishOperationAsyncResult(ServiceDurableInstance durableInstance, bool completeInstance, bool performPersistence, Exception operationException, AsyncCallback callback, object state) 771static AsyncCallback loadCallback = Fx.ThunkCallback(new AsyncCallback(LoadComplete)); 777public StartOperationAsyncResult(ServiceDurableInstance durableInstance, bool canCreateInstance, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\ServiceOperationInvoker.cs (5)
87public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state) 113static AsyncCallback finishCallback = Fx.ThunkCallback(new AsyncCallback(FinishComplete)); 114static AsyncCallback invokeCallback = Fx.ThunkCallback(new AsyncCallback(InvokeComplete)); 115static AsyncCallback startCallback = Fx.ThunkCallback(new AsyncCallback(StartComplete)); 126public InvokeAsyncResult(ServiceDurableInstance instance, object[] inputs, ServiceOperationInvoker invoker, bool canCreateInstance, AsyncCallback callback, object state)
System\ServiceModel\Dispatcher\WorkflowOperationAsyncResult.cs (1)
33AsyncCallback callback, object state, long time)
System\ServiceModel\Dispatcher\WorkflowOperationInvoker.cs (1)
120public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state)
System\ServiceModel\Persistence\LockingPersistenceProvider.cs (9)
16public override IAsyncResult BeginCreate(object instance, TimeSpan timeout, AsyncCallback callback, object state) 21public abstract IAsyncResult BeginCreate(object instance, TimeSpan timeout, bool unlockInstance, AsyncCallback callback, object state); 23public override IAsyncResult BeginLoad(TimeSpan timeout, AsyncCallback callback, object state) 28public abstract IAsyncResult BeginLoad(TimeSpan timeout, bool lockInstance, AsyncCallback callback, object state); 30public override IAsyncResult BeginLoadIfChanged(TimeSpan timeout, object instanceToken, AsyncCallback callback, object state) 35public virtual IAsyncResult BeginLoadIfChanged(TimeSpan timeout, object instanceToken, bool lockInstance, AsyncCallback callback, object state) 40public abstract IAsyncResult BeginUnlock(TimeSpan timeout, AsyncCallback callback, object state); 42public override IAsyncResult BeginUpdate(object instance, TimeSpan timeout, AsyncCallback callback, object state) 46public abstract IAsyncResult BeginUpdate(object instance, TimeSpan timeout, bool unlockInstance, AsyncCallback callback, object state);
System\ServiceModel\Persistence\PersistenceProvider.cs (5)
27public abstract IAsyncResult BeginCreate(object instance, TimeSpan timeout, AsyncCallback callback, object state); 29public abstract IAsyncResult BeginDelete(object instance, TimeSpan timeout, AsyncCallback callback, object state); 30public abstract IAsyncResult BeginLoad(TimeSpan timeout, AsyncCallback callback, object state); 32public virtual IAsyncResult BeginLoadIfChanged(TimeSpan timeout, object instanceToken, AsyncCallback callback, object state) 36public abstract IAsyncResult BeginUpdate(object instance, TimeSpan timeout, AsyncCallback callback, object state);
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (18)
231protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 238protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state) 306IAsyncResult BeginCreate(Guid id, object instance, TimeSpan timeout, bool unlockInstance, AsyncCallback callback, object state) 321IAsyncResult BeginDelete(Guid id, object instance, TimeSpan timeout, AsyncCallback callback, object state) 330IAsyncResult BeginLoad(Guid id, TimeSpan timeout, bool lockInstance, AsyncCallback callback, object state) 339IAsyncResult BeginUnlock(Guid id, TimeSpan timeout, AsyncCallback callback, object state) 348IAsyncResult BeginUpdate(Guid id, object instance, TimeSpan timeout, bool unlockInstance, AsyncCallback callback, object state) 713public CloseAsyncResult(SqlPersistenceProviderFactory provider, TimeSpan timeout, AsyncCallback callback, object state) 975public OpenAsyncResult(SqlPersistenceProviderFactory provider, TimeSpan timeout, AsyncCallback callback, object state) 1020static AsyncCallback commandCallback = Fx.ThunkCallback(new AsyncCallback(CommandExecutionComplete)); 1030public OperationAsyncResult(OperationHandler handler, SqlPersistenceProviderFactory provider, Guid id, TimeSpan timeout, AsyncCallback callback, object state, params object[] additionalParameters) 1251public override IAsyncResult BeginCreate(object instance, TimeSpan timeout, bool unlockInstance, AsyncCallback callback, object state) 1257public override IAsyncResult BeginDelete(object instance, TimeSpan timeout, AsyncCallback callback, object state) 1263public override IAsyncResult BeginLoad(TimeSpan timeout, bool lockInstance, AsyncCallback callback, object state) 1269public override IAsyncResult BeginUnlock(TimeSpan timeout, AsyncCallback callback, object state) 1275public override IAsyncResult BeginUpdate(object instance, TimeSpan timeout, bool unlockInstance, AsyncCallback callback, object state) 1340protected override IAsyncResult OnBeginClose(TimeSpan timeout, AsyncCallback callback, object state) 1345protected override IAsyncResult OnBeginOpen(TimeSpan timeout, AsyncCallback callback, object state)
System.Xaml.Hosting (1)
System\Xaml\Hosting\XamlHttpHandlerFactory.cs (1)
148public IAsyncResult BeginProcessRequest(HttpContext context, AsyncCallback cb, object extraData)
System.Xml (2)
System\Xml\XmlDownloadManager.cs (2)
140public override IAsyncResult BeginRead( byte[] buffer, int offset, int count, AsyncCallback callback, object state ) { 144public override IAsyncResult BeginWrite( byte[] buffer, int offset, int count, AsyncCallback callback, object state ) {