System.Runtime.Serialization.Json.DataContractJsonSerializerImpl.IsStartObject C# (CSharp) Method

IsStartObject() public method

public IsStartObject ( XmlDictionaryReader reader ) : bool
reader System.Xml.XmlDictionaryReader
return bool
        public override bool IsStartObject(XmlDictionaryReader reader)
        {
            // No need to pass in DateTimeFormat to JsonReaderDelegator: no DateTimes will be read in IsStartObject
            return IsStartObjectHandleExceptions(new JsonReaderDelegator(reader));
        }

Same methods

DataContractJsonSerializerImpl::IsStartObject ( XmlReader reader ) : bool

Usage Example

コード例 #1
0
 public override bool IsStartObject(XmlReader reader)
 {
     return(_serializer.IsStartObject(reader));
 }