Click or drag to resize

RemAdminGetMethods Method

Paperwork .Net Kütüphanesi
Sistemde kayıtlı olan metotların listesi(dataları ile birlikte) almak için kullanılan metottur.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_MethodList GetMethods(
	string filterText,
	int pageIndex
)

Parameters

filterText
Type: SystemString
Bu parametre ile başlayan metotlar getirilir. (Boşluk hepsini getirir)
pageIndex
Type: SystemInt32
Sayfa sayısı birden fazla ise getirilecek sayfa numarası.

Return Value

Type: a_MethodList
Verilen parametrelere göre a_MethodList tipinde metot listesi döner.
Examples
C#
 

            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);
                }
            }
See Also