/// <summary> /// Creates the specified AuthenticationMethod using POST. /// </summary> /// <param name="authenticationMethodToCreate">The AuthenticationMethod to create.</param> /// <returns>The created AuthenticationMethod.</returns> public System.Threading.Tasks.Task <AuthenticationMethod> CreateAsync(AuthenticationMethod authenticationMethodToCreate) { return(this.CreateAsync(authenticationMethodToCreate, CancellationToken.None)); }
/// <summary> /// Adds the specified AuthenticationMethod to the collection via POST. /// </summary> /// <param name="authenticationMethod">The AuthenticationMethod to add.</param> /// <returns>The created AuthenticationMethod.</returns> public System.Threading.Tasks.Task <AuthenticationMethod> AddAsync(AuthenticationMethod authenticationMethod) { return(this.AddAsync(authenticationMethod, CancellationToken.None)); }
/// <summary> /// Initializes any collection properties after deserialization, like next requests for paging. /// </summary> /// <param name="authenticationMethodToInitialize">The <see cref="AuthenticationMethod"/> with the collection properties to initialize.</param> private void InitializeCollectionProperties(AuthenticationMethod authenticationMethodToInitialize) { }