CmisSync.Lib.Database.Database.GetRemoteFilePath C# (CSharp) Метод

GetRemoteFilePath() публичный Метод

public GetRemoteFilePath ( string id ) : string
id string
Результат string
        public string GetRemoteFilePath(string id)
        {
            Dictionary<string, object> parameters = new Dictionary<string, object>();
            parameters.Add("id", id);
            return Denormalize((string)ExecuteSQLFunction("SELECT path FROM files WHERE id=@id", parameters));
        }