Opc.Ua.SessionEndpoint.TranslateBrowsePathsToNodeIds C# (CSharp) Méthode

TranslateBrowsePathsToNodeIds() public méthode

The operation contract for the TranslateBrowsePathsToNodeIds service.
public TranslateBrowsePathsToNodeIds ( TranslateBrowsePathsToNodeIdsMessage request ) : TranslateBrowsePathsToNodeIdsResponseMessage
request TranslateBrowsePathsToNodeIdsMessage
Résultat TranslateBrowsePathsToNodeIdsResponseMessage
        public virtual TranslateBrowsePathsToNodeIdsResponseMessage TranslateBrowsePathsToNodeIds(TranslateBrowsePathsToNodeIdsMessage request)
        {
            TranslateBrowsePathsToNodeIdsResponse response = null;

            try
            {
                // OnRequestReceived(message.TranslateBrowsePathsToNodeIdsRequest);

                SetRequestContext(RequestEncoding.Xml);
                response = (TranslateBrowsePathsToNodeIdsResponse)TranslateBrowsePathsToNodeIds(request.TranslateBrowsePathsToNodeIdsRequest);
                // OnResponseSent(response);
                return new TranslateBrowsePathsToNodeIdsResponseMessage(response);
            }
            catch (Exception e)
            {
                Exception fault = CreateSoapFault(request.TranslateBrowsePathsToNodeIdsRequest, e);
                // OnResponseFaultSent(fault);
                throw fault;
            }
        }
        #else

Same methods

SessionEndpoint::TranslateBrowsePathsToNodeIds ( IServiceRequest incoming ) : IServiceResponse
SessionEndpoint