CloudinaryDotNet.Actions.ListResourcesByTagParams.Check C# (CSharp) Méthode

Check() public méthode

Validate object model
Tag must be set to list resource by tag!
public Check ( ) : void
Résultat void
        public override void Check()
        {
            base.Check();

            if (String.IsNullOrEmpty(Tag))
                throw new ArgumentException("Tag must be set to filter resources by tag!");
        }
ListResourcesByTagParams