Microsoft.Azure.Commands.Batch.Models.NewJobScheduleParameters.NewJobScheduleParameters C# (CSharp) Method

NewJobScheduleParameters() public method

public NewJobScheduleParameters ( BatchAccountContext context, string jobScheduleId, IEnumerable additionalBehaviors = null ) : Microsoft.Azure.Batch
context BatchAccountContext
jobScheduleId string
additionalBehaviors IEnumerable
return Microsoft.Azure.Batch
        public NewJobScheduleParameters(BatchAccountContext context, string jobScheduleId, IEnumerable<BatchClientBehavior> additionalBehaviors = null)
            : base(context, additionalBehaviors)
        {
            if (string.IsNullOrWhiteSpace(jobScheduleId))
            {
                throw new ArgumentNullException("jobScheduleId");
            }

            this.JobScheduleId = jobScheduleId;
        }
NewJobScheduleParameters