 | RemLookup.GetMethodList Method |
Paperwork .Net Kütüphanesi
Method Listesi
Namespace:
Paperwork.Connect
Assembly:
Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntaxpublic ObservableCollection<LookupItem> GetMethodList(
bool activeOnly,
string methodType
)
Parameters
- activeOnly
- Type: System.Boolean
Sadece aktif metodlarınmı yoksa tüm metodlarınmı alınacağı bu parametre ile belirlenir. - methodType
- Type: System.String
İstenen metod akış metodu ise 'T' aksi durumda 'F' değeri gönderilir. Boş gönderilir ise tüm metodları döner.
Return Value
Type:
ObservableCollection<LookupItem> Durumları ve tiplerine göre istenilen methodları döner.
Examplespublic void GetMethodList()
{
bool activeOnly = true;
string methodType = string.Empty;
ObservableCollection<LookupItem> getmethodlist = p.rLookup.GetMethodList(activeOnly,methodType);
foreach (LookupItem method in getmethodlist)
{
Console.WriteLine("Method adı: {0}", method.Name);
}
}
See Also