Beispiel #1
0
 private static void PrintChangeRequestInfo(ChangeRequest cr)
 {
     //See the OSLC4J ChangeRequest class for a full list of attributes you can access.
     if (cr != null)
     {
         Console.WriteLine("ID: " + cr.GetIdentifier() + ", Title: " + cr.GetTitle() + ", Status: " + cr.GetStatus());
     }
 }