예제 #1
0
        public static void ApplicationTrustEnumeratorCallMethods()
        {
            Policy.ApplicationTrustEnumerator ate = (Policy.ApplicationTrustEnumerator)Activator.CreateInstance(typeof(Policy.ApplicationTrustEnumerator), true);
            bool testbool = ate.MoveNext();

            ate.Reset();
        }
예제 #2
0
        public static void ApplicationTrustCollectionCallMethods()
        {
            Policy.ApplicationTrustCollection atc = (Policy.ApplicationTrustCollection)Activator.CreateInstance(typeof(Policy.ApplicationTrustCollection), true);
            Policy.ApplicationTrust           at  = new Policy.ApplicationTrust();
            int testint = atc.Add(at);

            Policy.ApplicationTrust[] atarray = new Policy.ApplicationTrust[1];
            atc.AddRange(atarray);
            atc.AddRange(atc);
            atc.Clear();
            atc.CopyTo(atarray, 0);
            Policy.ApplicationTrustEnumerator ate = atc.GetEnumerator();
            atc.Remove(at);
            atc.RemoveRange(atarray);
            atc.RemoveRange(atc);
        }