TypeCheckFunctionsExtensions.IsPrimitive(Object) Method
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.
Determines if a certain property is of premitive JSON type.
public static bool IsPrimitive (this object obj);
static member IsPrimitive : obj -> bool
<Extension()>
Public Function IsPrimitive (obj As Object) As Boolean
Parameters
- obj
- System.Object
Returns
- System.Boolean
Returns true if this property is null otherwise returns false.
Examples
var isPrimitiveQuery = documents.Where(document => document.Name.IsPrimitive());
Remarks
Premitive JSON types (Double, String, Boolean and Null)