System.ServiceModel.Channels.Http.HttpStandaloneListenerManager.GetContextCompleted C# (CSharp) Method

GetContextCompleted() public method

public GetContextCompleted ( IAsyncResult result ) : void
result IAsyncResult
return void
		void GetContextCompleted (IAsyncResult result)
		{
			var ctx = listener.EndGetContext (result);
			ProcessNewContext (ctx);
			// start another listening
			listener.BeginGetContext (GetContextCompleted, null);
		}