protected void ToString(List <string> toStringOutput)
 {
     toStringOutput.Add($"Cursor = {(Cursor == null ? "null" : Cursor == string.Empty ? "" : Cursor)}");
     toStringOutput.Add($"ObjectTypes = {(ObjectTypes == null ? "null" : $"[{ string.Join(", ", ObjectTypes)} ]")}");
     toStringOutput.Add($"IncludeDeletedObjects = {(IncludeDeletedObjects == null ? "null" : IncludeDeletedObjects.ToString())}");
     toStringOutput.Add($"IncludeRelatedObjects = {(IncludeRelatedObjects == null ? "null" : IncludeRelatedObjects.ToString())}");
     toStringOutput.Add($"BeginTime = {(BeginTime == null ? "null" : BeginTime == string.Empty ? "" : BeginTime)}");
     toStringOutput.Add($"Query = {(Query == null ? "null" : Query.ToString())}");
     toStringOutput.Add($"Limit = {(Limit == null ? "null" : Limit.ToString())}");
 }
 protected void ToString(List <string> toStringOutput)
 {
     toStringOutput.Add($"IncludeRelatedObjects = {(IncludeRelatedObjects == null ? "null" : IncludeRelatedObjects.ToString())}");
     toStringOutput.Add($"CatalogVersion = {(CatalogVersion == null ? "null" : CatalogVersion.ToString())}");
 }
Пример #3
0
 protected void ToString(List <string> toStringOutput)
 {
     toStringOutput.Add($"ObjectIds = {(ObjectIds == null ? "null" : $"[{ string.Join(", ", ObjectIds)} ]")}");
     toStringOutput.Add($"IncludeRelatedObjects = {(IncludeRelatedObjects == null ? "null" : IncludeRelatedObjects.ToString())}");
     toStringOutput.Add($"CatalogVersion = {(CatalogVersion == null ? "null" : CatalogVersion.ToString())}");
 }