A library is a special kind of compiled WhizzML source code that only defines functions and constants. It is intended as an import for executable scripts. The complete and updated reference with all available parameters is in our documentation website.
Inheritance: Response
 /// <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);
 }
 /// <summary>
 ///  Create a whizzml library using the supplied arguments.
 /// </summary>
 public Task<Library> CreateLibrary(Library.Arguments arguments)
 {
     return Create<Library>(arguments);
 }