Microsoft.Azure.Commands.Batch.Models.NewPoolParameters.NewPoolParameters C# (CSharp) 메소드

NewPoolParameters() 공개 메소드

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

            this.PoolId = poolId;
        }
NewPoolParameters