Specifies if string comparisons within masking are case-sensitive.
Syntax
| Visual Basic (Declaration) | |
|---|
<System.ComponentModel.DefaultValueAttribute()>
<ISNet.Serialization.BinarySerializableAttribute()>
<System.ComponentModel.DescriptionAttribute("Specifies if string comparisons within masking are case-sensitive.")>
<System.ComponentModel.NotifyParentPropertyAttribute(True)>
<System.ComponentModel.ReadOnlyAttribute(True)>
Public Property CaseSentitive As System.Boolean |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As MaskInfo
Dim value As System.Boolean
instance.CaseSentitive = value
value = instance.CaseSentitive |
| C# | |
|---|
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Specifies if string comparisons within masking are case-sensitive.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.ReadOnlyAttribute(true)]
public System.bool CaseSentitive {get; set;} |
| Delphi | |
|---|
public read-write property CaseSentitive: System.Boolean; |
| JScript | |
|---|
System.ComponentModel.DefaultValueAttribute()
ISNet.Serialization.BinarySerializableAttribute()
System.ComponentModel.DescriptionAttribute("Specifies if string comparisons within masking are case-sensitive.")
System.ComponentModel.NotifyParentPropertyAttribute()
System.ComponentModel.ReadOnlyAttribute()
public function get,set CaseSentitive : System.boolean |
| Managed Extensions for C++ | |
|---|
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Specifies if string comparisons within masking are case-sensitive.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.ReadOnlyAttribute(true)]
public: __property System.bool get_CaseSentitive();
public: __property void set_CaseSentitive(
System.bool value
); |
| C++/CLI | |
|---|
[System.ComponentModel.DefaultValueAttribute()]
[ISNet.Serialization.BinarySerializableAttribute()]
[System.ComponentModel.DescriptionAttribute("Specifies if string comparisons within masking are case-sensitive.")]
[System.ComponentModel.NotifyParentPropertyAttribute(true)]
[System.ComponentModel.ReadOnlyAttribute(true)]
public:
property System.bool CaseSentitive {
System.bool get();
void set ( System.bool value);
} |
Property Value
The default is true.
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also