Example #1
0
 /// <summary>
 /// Create a dataset.
 /// </summary>
 /// <param name="script">The source from which you want to generate a dataset.</param>
 /// <param name="name">The optional name you want to give to the new dataset. </param>
 public Task <Library> CreateLibrary(string name = null, Library.Arguments arguments = null)
 {
     arguments = arguments ?? new Library.Arguments();
     if (!string.IsNullOrWhiteSpace(name))
     {
         arguments.Name = name;
     }
     return(Create <Library>(arguments));
 }
Example #2
0
 /// <summary>
 ///  Create a whizzml library using the supplied arguments.
 /// </summary>
 public Task <Library> CreateLibrary(Library.Arguments arguments)
 {
     return(Create <Library>(arguments));
 }