Net.Http.WebApi.OData.Query.Expressions.ConstantNode.Guid C# (CSharp) Method

Guid() public static method

Gets a ConstantNode which represents a Guid value.
public static Guid ( string literalText, System.Guid value ) : ConstantNode
literalText string The literal text.
value System.Guid The value.
return ConstantNode
        public static ConstantNode Guid(string literalText, Guid value)
        {
            return new ConstantNode(EdmType.Guid, literalText, value);
        }