CanSecure() 개인적인 정적인 메소드

private static CanSecure ( string path ) : bool
path string
리턴 bool
예제 #1
0
 private static bool IsMachineProtected(string path)
 {
     return(!KeyPairPersistence.CanSecure(path) || KeyPairPersistence._IsMachineProtected(path));
 }
예제 #2
0
 private static bool ProtectMachine(string path)
 {
     return(!KeyPairPersistence.CanSecure(path) || KeyPairPersistence._ProtectMachine(path));
 }