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)); }
protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version) { if (workspace == null) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof(workspace)); } return(workspace.TryParseElement(reader, version)); }
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)); }
protected static bool TryParseElement(XmlReader reader, Workspace workspace, string version) { if (workspace is null) { throw new ArgumentNullException(nameof(workspace)); } 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) { 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); }