ServiceDescriptionImportStyle.cs 294 B

123456789101112131415
  1. //
  2. // System.Web.Services.Description.ServiceDescriptionImportStyle.cs
  3. //
  4. // Author:
  5. // Tim Coleman ([email protected])
  6. //
  7. // Copyright (C) Tim Coleman, 2002
  8. //
  9. namespace System.Web.Services.Description {
  10. public enum ServiceDescriptionImportStyle {
  11. Client,
  12. Server
  13. }
  14. }