| 2616 | #pragma region NonScriptable |
| 2617 | |
| 2618 | void NanaBox::RdpClient::ClearTextPassword( |
| 2619 | winrt::hstring const& Value) |
| 2620 | { |
| 2621 | winrt::bstr RawValue; |
| 2622 | RawValue.attach(::SysAllocString(Value.c_str())); |
| 2623 | winrt::check_hresult( |
| 2624 | this->m_NonScriptable->put_ClearTextPassword( |
| 2625 | RawValue.get())); |
| 2626 | } |
| 2627 | |
| 2628 | void NanaBox::RdpClient::ResetPassword() |
| 2629 | { |
nothing calls this directly
no outgoing calls
no test coverage detected