コード例 #1
0
ファイル: Functions.cs プロジェクト: gjedlicska/speckle-sharp
        public static string ReceiveInfo(string inMemoryDataId)
        {
            var commit = InMemoryCache.Get(inMemoryDataId)["commit"] as Commit;

            return($"{commit.authorName} @ {commit.createdAt}: {commit.message} (id:{commit.id})");
        }
コード例 #2
0
ファイル: Functions.cs プロジェクト: gjedlicska/speckle-sharp
 public static object ReceiveData(string inMemoryDataId)
 {
     return(InMemoryCache.Get(inMemoryDataId)["data"]);
 }