Esempio n. 1
0
 /// <summary>
 /// Initializes a new instance of the AggregateFunctionProperties
 /// class.
 /// </summary>
 /// <param name="etag">The current entity tag for the function. This is
 /// an opaque string. You can use it to detect whether the resource has
 /// changed between requests. You can also use it in the If-Match or
 /// If-None-Match headers for write operations for optimistic
 /// concurrency.</param>
 public AggregateFunctionProperties(string etag = default(string), IList <FunctionInput> inputs = default(IList <FunctionInput>), FunctionOutput output = default(FunctionOutput), FunctionBinding binding = default(FunctionBinding))
     : base(etag, inputs, output, binding)
 {
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the ScalarFunctionProperties class.
 /// </summary>
 /// <param name="etag">The current entity tag for the function. This is
 /// an opaque string. You can use it to detect whether the resource has
 /// changed between requests. You can also use it in the If-Match or
 /// If-None-Match headers for write operations for optimistic
 /// concurrency.</param>
 /// <param name="inputs">A list of inputs describing the parameters of
 /// the function.</param>
 /// <param name="output">The output of the function.</param>
 /// <param name="binding">The physical binding of the function. For
 /// example, in the Azure Machine Learning web service’s case, this
 /// describes the endpoint.</param>
 public ScalarFunctionProperties(string etag = default(string), IList <FunctionInput> inputs = default(IList <FunctionInput>), FunctionOutput output = default(FunctionOutput), FunctionBinding binding = default(FunctionBinding))
     : base(etag)
 {
     Inputs  = inputs;
     Output  = output;
     Binding = binding;
     CustomInit();
 }
 /// <summary>
 /// Initializes a new instance of the FunctionProperties class.
 /// </summary>
 /// <param name="etag">The current entity tag for the function. This is
 /// an opaque string. You can use it to detect whether the resource has
 /// changed between requests. You can also use it in the If-Match or
 /// If-None-Match headers for write operations for optimistic
 /// concurrency.</param>
 public FunctionProperties(string etag = default(string), IList <FunctionInput> inputs = default(IList <FunctionInput>), FunctionOutput output = default(FunctionOutput), FunctionBinding binding = default(FunctionBinding))
 {
     Etag    = etag;
     Inputs  = inputs;
     Output  = output;
     Binding = binding;
     CustomInit();
 }