Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Represents the string normalization mode.
Namespace: Microsoft.SharePoint.BusinessData.Infrastructure
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Enumeration Mode
'Usage
Dim instance As StringNormalize.Mode
public enum Mode
Members
Member name | Description | |
---|---|---|
NoChange | Specifies that there is no change in the string (= 0). | |
NormalizeToEmptyString | Specifies that the string is normalized to an empty string (= 1).
This setting means that if the string that originates from the external system is a null reference (Nothing in Visual Basic), it is converted to an empty string. |
|
NormalizeToNull | Specifies that the string is normalized to a null value (= 2).
This setting means that if the string that originates from the external system is an empty string, it should be converted to a null reference (Nothing in Visual Basic). |