TileCook.TileFilter.IsValid C# (CSharp) Method

IsValid() public method

public IsValid ( int Z, Envelope env, string format ) : bool
Z int
env Envelope
format string
return bool
        public bool IsValid(int Z, Envelope env, string format)
        {
            return IsEnvelopeValid(env) && IsFormatValid(format) && IsZValid(Z);
        }