예제 #1
0
 protected void OnCompletedChanged(SendServiceRequestEventArgs e)
 {
     if (SendServiceRequestCompleted != null)
     {
         SendServiceRequestCompleted(this, e);
     }
 }
예제 #2
0
        /// <summary>
        /// Completeds the specified operation state.
        /// </summary>
        /// <param name="operationState">State of the operation.</param>
        private void Completed(object operationState)
        {
            SendServiceRequestEventArgs e = operationState as SendServiceRequestEventArgs;

            OnCompletedChanged(e);
        }