ATMLCommonLibrary.controls.capability.CapabilityInterfaceListControl.GetCapabilityPortMapPath C# (CSharp) Méthode

GetCapabilityPortMapPath() private méthode

private GetCapabilityPortMapPath ( ) : string
Résultat string
        private string GetCapabilityPortMapPath()
        {
            string path = null;
            if (_testStationDescription != null)
                path = MessageManager.getMessage("testStation.capability.port.map.path");
            else if (_instrument != null)
                path = MessageManager.getMessage("instrument.capability.port.map.path");
            else if (_testAdapterDescription != null)
                path = MessageManager.getMessage("testAdapter.capability.port.map.path");
            return path;
        }