Deveel.Data.Client.DeveelDbConnectionStringBuilder.ShouldSerialize C# (CSharp) Method

ShouldSerialize() public method

public ShouldSerialize ( string keyword ) : bool
keyword string
return bool
        public override bool ShouldSerialize(string keyword)
        {
            if (!ContainsKey(keyword))
                return false;

            keyword = keyword.ToUpper().Trim();
            string key = keymaps[keyword];
            if (persistSecurityInfo && key == PasswordKey)
                return false;

            return base.ShouldSerialize(key);
        }