示例#1
0
 /// <summary>
 /// Method to generate uuid
 /// </summary>
 private void GenerateUUID()
 {
     this.ClearOutputAction();
     this.PrintEntry();
     this._configSID = _client.GenerateUUIDAsync().GetAwaiter().GetResult();
     this.PrintOutputAction($"UUID: {this._configSID}");
 }
        /// <summary>
        /// Method to generate uuid
        /// </summary>
        private async Task GenerateUUID()
        {
            this.ClearOutputAction();
            this.PrintEntry();
            this._configSID = await _client.GenerateUUIDAsync();

            this.PrintOutputAction($"UUID: {this._configSID}");
        }