Click or drag to resize

RemUserGetUserCustoms Method

Paperwork .Net Kütüphanesi
kullanıcın grubu belirtir.

Namespace:  Paperwork.Connect
Assembly:  Paperwork.Connect (in Paperwork.Connect.dll) Version: 5.0.0.0
Syntax
C#
public rUserCustomization[] GetUserCustoms(
	string category,
	string name
)

Parameters

category
Type: SystemString
PW_USER_CUSTOMIZATION tablosundaki category kolonu
name
Type: SystemString
PW_USER_CUSTOMIZATION tablosundaki name

Return Value

Type: rUserCustomization
Examples
C#
  
              public void GetUserCustoms()
            {
                string category = "cat 1";
                string name = "name 2";
                rUserCustomization[] retVal = p.rUser.GetUserCustoms(category, name);
                if (retVal.Length  <= 0)//<=
                    Console.WriteLine("Kayıt bulunamadı.");
                else
                    foreach (var item in retVal)
                    {
                        Console.WriteLine("Category : " + item.Category);
                        Console.WriteLine("Name : " + item.Name);
                        Console.WriteLine("Value : " + item.Value);
                    }
            }
See Also