Click or drag to resize

RemUserGetAclTemplates Method

Paperwork .Net Kütüphanesi
Yetki seti taslaklarının listesini döner.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public a_ACLTemplateList GetAclTemplates(
	string templateName
)

Parameters

templateName
Type: SystemString
Taslak adına göre filtrelemek için kullanılanılır. Tüm taslaklar için boş gönderilir.

Return Value

Type: a_ACLTemplateList
Examples
C#
  
            public void GetAclTemplates()
            {
                a_ACLTemplateList aclT = p.rUser.GetAclTemplates("");
                foreach (a_ACLTemplate item in aclT.Items)
                Console.WriteLine(item.Name);
                Console.ReadLine();
            }
                
See Also