* Makefile: Build the make-map.exe in Mono.Unix.Native; add /nowarn:0618 to
[mono.git] / mcs / class / Mono.Posix / Mono.Unix / UnixUserInfo.cs
index 52515892387287a74a3c75582f09925bb58ea8ec..bb0748e6ad9305fde09863948ccc498caf1101e5 100644 (file)
@@ -46,6 +46,7 @@ namespace Mono.Unix {
                                throw new ArgumentException (Locale.GetText ("invalid username"), "user");
                }
 
+               [CLSCompliant (false)]
                public UnixUserInfo (uint user)
                {
                        passwd = new Passwd ();
@@ -68,10 +69,12 @@ namespace Mono.Unix {
                        get {return passwd.pw_passwd;}
                }
 
+               [CLSCompliant (false)]
                public uint UserId {
                        get {return passwd.pw_uid;}
                }
 
+               [CLSCompliant (false)]
                public uint GroupId {
                        get {return passwd.pw_gid;}
                }