AllowedFunctions Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Functions to allow for querying using $filter.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum AllowedFunctions
[<System.Flags>]
type AllowedFunctions =
Public Enum AllowedFunctions
- Inheritance
-
AllowedFunctions
- Attributes
Fields
Name | Value | Description |
---|---|---|
None | 0 | A value that corresponds to allowing no functions in $filter. |
StartsWith | 1 | A value that corresponds to allowing 'StartsWith' function in $filter. |
EndsWith | 2 | A value that corresponds to allowing 'EndsWith' function in $filter. |
Contains | 4 | A value that corresponds to allowing 'Contains' function in $filter. |
Length | 8 | A value that corresponds to allowing 'Length' function in $filter. |
IndexOf | 16 | A value that corresponds to allowing 'IndexOf' function in $filter. |
Concat | 32 | A value that corresponds to allowing 'Concat' function in $filter. |
Substring | 64 | A value that corresponds to allowing 'Substring' function in $filter. |
ToLower | 128 | A value that corresponds to allowing 'ToLower' function in $filter. |
ToUpper | 256 | A value that corresponds to allowing 'ToUpper' function in $filter. |
Trim | 512 | A value that corresponds to allowing 'Trim' function in $filter. |
AllStringFunctions | 1023 | A value that corresponds to allowing all string related functions in $filter. |
Cast | 1024 | A value that corresponds to allowing 'Cast' function in $filter. |
Year | 2048 | A value that corresponds to allowing 'Year' function in $filter. |
Date | 4096 | A value that corresponds to allowing 'Date' function in $filter. |
Month | 8192 | A value that corresponds to allowing 'Month' function in $filter. |
Time | 16384 | A value that corresponds to allowing 'Time' function in $filter. |
Day | 32768 | A value that corresponds to allowing 'Day' function in $filter. |
Hour | 131072 | A value that corresponds to allowing 'Hour' function in $filter. |
Minute | 524288 | A value that corresponds to allowing 'Minute' function in $filter. |
Second | 2097152 | A value that corresponds to allowing 'Second' function in $filter. |
FractionalSeconds | 4194304 | A value that corresponds to allowing 'Fractionalseconds' function in $filter. |
AllDateTimeFunctions | 7010304 | A value that corresponds to allowing all datetime related functions in $filter. |
Round | 8388608 | A value that corresponds to allowing 'Round' function in $filter. |
Floor | 16777216 | A value that corresponds to allowing 'Floor' function in $filter. |
Ceiling | 33554432 | A value that corresponds to allowing 'Ceiling' function in $filter. |
AllMathFunctions | 58720256 | A value that corresponds to allowing math related functions in $filter. |
IsOf | 67108864 | A value that corresponds to allowing 'IsOf' function in $filter. |
Any | 134217728 | A value that corresponds to allowing 'Any' function in $filter. |
All | 268435456 | A value that corresponds to allowing 'All' function in $filter. |
AllFunctions | 535494655 | A value that corresponds to allowing all functions in $filter. |