Quantcast
Channel: Using Optimizely Platforms
Viewing all articles
Browse latest Browse all 8020

What is the role of AllowMultiple=true/false?

$
0
0

What is the role of AllowMultiple when we already inherit from SelectOneAttribute?

[AttributeUsage(AttributeTargets.Property, AllowMultiple = false)]publicclass LanguageSelectionAttribute : SelectOneAttribute
{publicoverride Type SelectionFactoryType
    {
        get
        {returntypeof(LanguageSelectionFactory);
        }
        set
        {base.SelectionFactoryType = value;
        }
    }
}

Viewing all articles
Browse latest Browse all 8020

Trending Articles