UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

16 lines (14 loc) 549 B
import { RpcInboundClient } from '../rpc-inbound-client'; import { RpcCredSspRequestKey } from './rpc-credssp-model'; export class RpcCredSspRequestClient { /** * The CredSsp request command. * * @param data the RpcCredSSPOperation object. * @return Promise<RpcCredSSPOperationResult> the promise object. */ static credSspRequest(rpc, data) { return RpcInboundClient.call(rpc, RpcCredSspRequestKey.command, RpcCredSspRequestKey.version, data); } } //# sourceMappingURL=rpc-credssp-request-client.js.map