Opc.Ua.EndpointBase.ServiceDefinition.ServiceDefinition C# (CSharp) Method

ServiceDefinition() public method

Initializes the object with its request type and implementation.
public ServiceDefinition ( Type requestType, InvokeServiceEventHandler invokeMethod ) : System
requestType System.Type Type of the request.
invokeMethod InvokeServiceEventHandler The invoke method.
return System
            public ServiceDefinition(
                Type requestType, 
                InvokeServiceEventHandler invokeMethod)
            {
                m_requestType = requestType;
                m_InvokeService = invokeMethod;
            }
EndpointBase.ServiceDefinition