RemAdminGetMethods Method |
Namespace: Paperwork.Connect
public a_MethodList GetMethods( string filterText, int pageIndex )
public void GetMethods()
{
string filter_text = string.Empty; //tüm metotları alıyoruz
int page_index = 1;
a_MethodList methods = p.rAdmin.GetMethods(filter_text, page_index);
foreach (a_Method method in methods.Items)
{
Console.WriteLine("Method Adı: {0}, Açıklama: {1}, Method Durumu: {2}, Parametreler: {3} ", method.MethodName, method.MethodDesc, method.Status, method.Params);
}
}