Opc.Ua.EndpointBase.ServiceDefinition.ServiceDefinition C# (CSharp) Метод

ServiceDefinition() публичный Метод

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.
Результат System
            public ServiceDefinition(
                Type requestType, 
                InvokeServiceEventHandler invokeMethod)
            {
                m_requestType = requestType;
                m_InvokeService = invokeMethod;
            }
EndpointBase.ServiceDefinition