CloudinaryDotNet.Actions.CreateTransformParams.Check C# (CSharp) Method

Check() public method

Validate object model
public Check ( ) : void
return void
        public override void Check()
        {
            if (string.IsNullOrEmpty(Name))
                throw new ArgumentException("Name must be set!");

            if (Transform == null)
                throw new ArgumentException("Transform must be defined!");
        }
CreateTransformParams