RingCentral.Http.HttpHeaders.IsJson C# (CSharp) Method

IsJson() public method

Inspects headers to determine if content type is JSON
public IsJson ( ) : bool
return bool
        public bool IsJson()
        {
            return IsContentType(JsonContentType);
        }