Ignore:
Timestamp:
Aug 30, 2011, 5:24:52 PM (13 years ago)
Author:
bayral
Message:

retrieve tags list and image for a tag.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoWpf/Command/PwgCmdProvider.cs

    r11935 r12015  
    2626                case "PwgCmdGetSubCategorieforCategory":
    2727                    objICom = PwgCmdGetSubCategorieforCategory;
     28                    break;
     29                case "PwgCmdGetImageforTag":
     30                    objICom = PwgCmdGetImageforTag;
    2831                    break;
    2932                default:
     
    8689        }
    8790
     91        public static AsyncCommand _pwgCmdGetImageforTag;
     92        public static AsyncCommand PwgCmdGetImageforTag
     93        {
     94            get
     95            {
     96                if (_pwgCmdGetImageforTag == null)
     97                {
     98                    _pwgCmdGetImageforTag = new PwgCmdGetImageforTag();
     99                }
     100                return _pwgCmdGetImageforTag;
     101            }
     102        }
    88103    }
    89104}
Note: See TracChangeset for help on using the changeset viewer.