Descriptor for security permissions for a class or a method NOT YET IMPLEMENTED
상속: MetaDataElement
예제 #1
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 internal static void Read(PEReader buff, TableRow[] secs)
 {
     for (int i=0; i < secs.Length; i++)
         secs[i] = new DeclSecurity(buff);
 }
예제 #2
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 /*------------------------ internal functions ----------------------------*/
 internal void AddSecurity(DeclSecurity sec)
 {
     if (security == null) security = new ArrayList();
     security.Add(sec);
 }
예제 #3
0
파일: PERWAPI.cs 프로젝트: nomit007/f4
 public void AddSecurity(DeclSecurity sec)
 {
     methFlags |= HasSecurity;
     if (security == null) security = new ArrayList();
     security.Add(sec);
 }