/// <summary> /// Removes a Graph from the collection. /// </summary> /// <param name="graphUri">Graph URI.</param> /// <returns></returns> protected internal override bool Remove(Uri graphUri) { return(_graphs.Remove(graphUri)); }
/// <summary> /// Removes a Graph from the Triple Store. /// </summary> /// <param name="graphUri">Uri of the Graph to Remove.</param> public virtual bool Remove(Uri graphUri) { return(_graphs.Remove(graphUri)); }