IClrObjectFactory.cs 548 B

123456789101112131415161718192021222324
  1. // System.EnterpriseServices.Internal.IClrObjectFactory.cs
  2. //
  3. // Author:
  4. // Alejandro Sánchez Acosta ([email protected])
  5. //
  6. // (C) Alejandro Sánchez Acosta
  7. //
  8. using System.Runtime.InteropServices;
  9. namespace System.EnterpriseServices.Internal
  10. {
  11. //[Guid("")]
  12. public interface IClrObjectFactory
  13. {
  14. object CreateFromAssembly(string assembly, string type, string mode);
  15. object CreateFromMailbox(string Mailbox, string Mode);
  16. object CreateFromVroot(string VrootUrl, string Mode);
  17. object CreateFromWsdl(string WsdlUrl, string Mode);
  18. }
  19. }