예제 #1
0
 /// <summary>
 /// Initializes the object with its request type and implementation.
 /// </summary>
 /// <param name="requestType">Type of the request.</param>
 /// <param name="invokeMethod">The invoke method.</param>
 public ServiceDefinition(
     Type requestType,
     InvokeServiceEventHandler invokeMethod)
 {
     m_requestType   = requestType;
     m_InvokeService = invokeMethod;
 }
 /// <summary>
 /// Initializes the object with its request type and implementation.
 /// </summary>
 /// <param name="requestType">Type of the request.</param>
 /// <param name="invokeMethod">The invoke method.</param>
 public ServiceDefinition(
     Type requestType, 
     InvokeServiceEventHandler invokeMethod)
 {
     m_requestType = requestType;
     m_InvokeService = invokeMethod;
 }