protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version)
 {
     if (workspace == null)
     {
         throw System.ServiceModel.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("workspace");
     }
     return(workspace.TryParseElement(reader, version));
 }
Esempio n. 2
0
 protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version)
 {
     if (workspace == null)
     {
         throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof(workspace));
     }
     return(workspace.TryParseElement(reader, version));
 }
Esempio n. 3
0
        protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version)
        {
            if (workspace == null)
            {
                throw new ArgumentNullException(nameof(workspace));
            }

            return(workspace.TryParseElement(XmlReaderWrapper.CreateFromReader(reader), version));
        }
Esempio n. 4
0
        protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version)
        {
            if (workspace is null)
            {
                throw new ArgumentNullException(nameof(workspace));
            }

            return(workspace.TryParseElement(reader, version));
        }
Esempio n. 5
0
 protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version)
 {
     return(workspace.TryParseElement(reader, version));
 }
 protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version)
 {
     return workspace.TryParseElement (reader, version);
 }
 protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version)
 {
     if (workspace == null)
     {
         throw System.ServiceModel.DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("workspace");
     }
     return workspace.TryParseElement(reader, version);
 }