newtelligence.DasBlog.Web.Services.Rsd.RsdApiCollection.Contains C# (CSharp) Method

Contains() public method

Determines whether a specfic RsdApi value is in this RsdApiCollection.
public Contains ( RsdApi value ) : bool
value RsdApi /// The RsdApi value to locate in this RsdApiCollection. ///
return bool
        public virtual bool Contains(RsdApi value)
        {
            return this.List.Contains(value);
        }