BetterMembership.Extensions.NameValueCollectionExtension.GetString C# (CSharp) 메소드

GetString() 공개 정적인 메소드

public static GetString ( this collection, string key, string defaultValue = null ) : string
collection this
key string
defaultValue string
리턴 string
        public static string GetString(this NameValueCollection collection, string key, string defaultValue = null)
        {
            Condition.Requires(key, "key").IsNotNullOrWhiteSpace();

            if (collection == null)
            {
                return defaultValue;
            }

            return collection.Get(key) ?? defaultValue;
        }
    }