public TestDesktopStrongNameProvider(
     Func <string, byte[]> readAllBytes = null,
     ReadKeysFromContainerDelegate readKeysFromContainer = null)
 {
     m_readAllBytes          = readAllBytes;
     m_readKeysFromContainer = readKeysFromContainer;
 }
 public TestDesktopStrongNameProvider(
     Func<string, byte[]> readAllBytes = null,
     ReadKeysFromContainerDelegate readKeysFromContainer = null)
 {
     m_readAllBytes = readAllBytes;
     m_readKeysFromContainer = readKeysFromContainer;
 }
Пример #3
0
 public TestDesktopStrongNameProvider(
     Func <string, byte[]> readAllBytes = null,
     ReadKeysFromContainerDelegate readKeysFromContainer = null) : base(ImmutableArray <string> .Empty, null, new TestStrongNameFileSystem(readAllBytes))
 {
     m_readKeysFromContainer = readKeysFromContainer;
 }