RavenFS.Synchronization.Rdc.Wrapper.SigGenerator.SigGenerator C# (CSharp) 메소드

SigGenerator() 공개 메소드

public SigGenerator ( ) : System
리턴 System
		public SigGenerator()
		{
			try
			{
				_rdcLibrary = (IRdcLibrary) new RdcLibrary();
			}
			catch (InvalidCastException e)
			{
				throw new InvalidOperationException("This code must run in an MTA thread", e);
			}
			catch (COMException comException)
			{
				log.ErrorException("Remote Differential Compression feature is not installed", comException);
				throw new NotSupportedException("Remote Differential Compression feature is not installed", comException);
			}
		}