示例#1
0
 void fetchMyAmis()
 {
     if (_myAmis == null || _myAmis.Count == 0)
     {
         CEc2Service serv = new CEc2Service();
         _myAmis = serv.describeImages("self");
     }
 }
示例#2
0
 void fetchCommunityAmis()
 {
     if (_commAmis == null || _commAmis.Count == 0)
     {
         CEc2Service serv = new CEc2Service();
         _commAmis = serv.describeImages(null);
     }
 }