示例#1
0
        public string Path(bool withParameter = true)
        {
            if (withParameter && entryId != null)
            {
                return($"{parent.Path()}/entries/{entryId}");
            }

            return($"{parent.Path()}/entries");
        }
示例#2
0
 public string Path()
 {
     return($"{parent.Path()}/federation");
 }
示例#3
0
 public string Path()
 {
     return($"{parent.Path()}/entries");
 }