public void Remove(long oid = 0, string name = null) { try { RemoveObject(ClassifiedObject.MakeKey(oid, name)); } catch { throw; } }
public T Get <T>(long oid = 0, string name = null) where T : class, new() { try { var obj = GetObject(ClassifiedObject.MakeKey(oid, name)); if (null == obj) { return(null); } return(obj.GetValue <T>()); } catch { throw; } }