Get the Evidence collection from the loaded assembly and Display the Host Evidence : Evidence : Security C# Examples


C# Examples » Security » Evidence »

 

Get the Evidence collection from the loaded assembly and Display the Host Evidence









    
using  System;
using  System.Reflection;
using  System.Collections;
using  System.Security.Policy;

public  class  MainClass
{
        public  static  void  Main(string[]  args)  
        {
                Assembly  a  =  Assembly.LoadFrom(args[0]);

                Evidence  e  =  a.Evidence;
                
                IEnumerator  x  =  e.GetHostEnumerator();
                Console.WriteLine("host  evidence  collection:");
                while(x.MoveNext())  
                {
                        Console.WriteLine(x.Current.ToString());
                }
        }
}
    
   
  
   




HTML code for linking to this page:

Follow Navioo On Twitter

C# Examples

 Navioo Security
» Evidence