System.ServiceModel.Channels.Http.HttpStandaloneListenerManager.GetContextCompleted C# (CSharp) 메소드

GetContextCompleted() 공개 메소드

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