System.Security.Policy.ApplicationTrust.FromXml C# (CSharp) Méthode

FromXml() public méthode

public FromXml ( SecurityElement element ) : void
element SecurityElement
Résultat void
        public void FromXml(SecurityElement element)
        {
        }

Same methods

ApplicationTrust::FromXml ( System element ) : void

Usage Example

Exemple #1
0
 public static void ApplicationTrustCallMethods()
 {
     ApplicationTrust at = new ApplicationTrust();
     SecurityElement se = new SecurityElement("");
     at.FromXml(se);
     se = at.ToXml();
 }
All Usage Examples Of System.Security.Policy.ApplicationTrust::FromXml