| 742 | #pragma region SecuredSettings |
| 743 | |
| 744 | winrt::hstring NanaBox::RdpClient::StartProgram() |
| 745 | { |
| 746 | winrt::bstr RawValue; |
| 747 | winrt::check_hresult( |
| 748 | this->m_SecuredSettings->get_StartProgram( |
| 749 | RawValue.put())); |
| 750 | return winrt::hstring(RawValue.get()); |
| 751 | } |
| 752 | |
| 753 | void NanaBox::RdpClient::StartProgram( |
| 754 | winrt::hstring const& Value) |
nothing calls this directly
no outgoing calls
no test coverage detected