Click or drag to resize

LocalizationRequiredAttribute Class

Indicates that marked element should be localized or not
Inheritance Hierarchy
SystemObject
  SystemAttribute
    Ozeki.CommonLocalizationRequiredAttribute

Namespace: Ozeki.Common
Assembly: OzekiSDK (in OzekiSDK.dll) Version: 10.4.98
Syntax
public sealed class LocalizationRequiredAttribute : Attribute

The LocalizationRequiredAttribute type exposes the following members.

Constructors
 NameDescription
Public methodLocalizationRequiredAttributeInitializes a new instance of the LocalizationRequiredAttribute class
Public methodLocalizationRequiredAttribute(Boolean)Initializes a new instance of the LocalizationRequiredAttribute class
Top
Properties
 NameDescription
Public propertyRequired 
Top
Example
[LocalizationRequiredAttribute(true)] public class Foo { private string str = "my string"; // Warning: Localizable string }
See Also