@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
15 lines (13 loc) • 607 B
JavaScript
import { RpcOutboundClient } from '../rpc-outbound-client';
import { RpcCredSspResponseKey } from './rpc-credssp-model';
export class RpcCredSspResponseClient {
static credSspResponse(rpc, data, outbound) {
if (outbound) {
return RpcOutboundClient.callOutbound(rpc.rpcManager.rpcChannel, outbound, RpcCredSspResponseKey.command, RpcCredSspResponseKey.version, data);
}
else {
return RpcOutboundClient.call(rpc, RpcCredSspResponseKey.command, RpcCredSspResponseKey.version, data);
}
}
}
//# sourceMappingURL=rpc-credssp-response-client.js.map