/// <summary>
 /// This methods creates and reads a service document from the input and returns 
 /// an <see cref="ODataWorkspace"/> representing the service document.
 /// </summary>
 /// <returns>An <see cref="ODataWorkspace"/> representing the service document.</returns>
 private ODataWorkspace ReadServiceDocumentImplementation()
 {
     ODataAtomServiceDocumentDeserializer atomServiceDocumentDeserializer = new ODataAtomServiceDocumentDeserializer(this);
     return atomServiceDocumentDeserializer.ReadServiceDocument();
 }
Esempio n. 2
0
        /// <summary>
        /// This methods creates and reads a service document from the input and returns
        /// an <see cref="ODataWorkspace"/> representing the service document.
        /// </summary>
        /// <returns>An <see cref="ODataWorkspace"/> representing the service document.</returns>
        private ODataWorkspace ReadServiceDocumentImplementation()
        {
            ODataAtomServiceDocumentDeserializer atomServiceDocumentDeserializer = new ODataAtomServiceDocumentDeserializer(this);

            return(atomServiceDocumentDeserializer.ReadServiceDocument());
        }