FullTextCatalog.IsAccentSensitive Property

 

Applies To: SQL Server 2016 Preview

Gets or sets the Boolean property value that specifies whether the referenced full-text catalog is accent sensitive.

Namespace:   Microsoft.SqlServer.Management.Smo
Assembly:  Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)

Syntax

[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public bool IsAccentSensitive { get; set; }
public:
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
property bool IsAccentSensitive {
    bool get();
    void set(bool value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member IsAccentSensitive : bool with get, set
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>
Public Property IsAccentSensitive As Boolean

Property Value

Type: System.Boolean

A Boolean value that specifies whether the full-text catalog is accent sensitive.

If True, the full-text catalog is accent sensitive.

If False, the full-text catalog is not accent sensitive.

Remarks

This property must be set before the FullTextCatalog object is created.

Examples

Legacy Code Example

Implementing Full-Text Search

See Also

FullTextCatalog Class
Microsoft.SqlServer.Management.Smo Namespace

CREATE FULLTEXT CATALOG (Transact-SQL)
Unable to find linked topic 'db3747e0-db12-4c69-9d81-b5011984eb3a'.

Return to top