Advertisement
Guest User

Untitled

a guest
Apr 26th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.47 KB | None | 0 0
  1. namespace Microsoft.Web.Deploymebt
  2. {
  3. public enum DeploymentWellKnownTag
  4. {
  5. None = 0b0000000000000000000000000000000000000000000000000000000000000000,
  6. AppHostConfig = 0b0000000000000000000000000000000000000000000000000000000000000001,
  7. AppPoolConfig = 0b0000000000000000000000000000000000000000000000000000000000000010,
  8. Boolean = 0b0000000000000000000000000000000000000000000000000000000000000100,
  9. ComObject32 = 0b0000000000000000000000000000000000000000000000000000000000001000,
  10. ComObject64 = 0b0000000000000000000000000000000000000000000000000000000000010000,
  11. DBAdminPassword = 0b0000000000000000000000000000000000000000000000000000000000100000,
  12. DBAdminUserName = 0b0000000000000000000000000000000000000000000000000000000001000000,
  13. DBConnectionString = 0b0000000000000000000000000000000000000000000000000000000010000000,
  14. DBName = 0b0000000000000000000000000000000000000000000000000000000100000000,
  15. DBServer = 0b0000000000000000000000000000000000000000000000000000001000000000,
  16. DBUserName = 0b0000000000000000000000000000000000000000000000000000010000000000,
  17. DBUserPassword = 0b0000000000000000000000000000000000000000000000000000100000000000,
  18. FlatFile = 0b0000000000000000000000000000000000000000000000000001000000000000,
  19. Hidden = 0b0000000000000000000000000000000000000000000000000010000000000000,
  20. IisApp = 0b0000000000000000000000000000000000000000000000000100000000000000,
  21. MetaKey = 0b0000000000000000000000000000000000000000000000001000000000000000,
  22. MySql = 0b0000000000000000000000000000000000000000000000010000000000000000,
  23. MySqlConnectionString = 0b0000000000000000000000000000000000000000000000100000000000000000,
  24. New = 0b0000000000000000000000000000000000000000000001000000000000000000,
  25. RegKey = 0b0000000000000000000000000000000000000000000010000000000000000000,
  26. SetAcl = 0b0000000000000000000000000000000000000000000100000000000000000000,
  27. Sql = 0b0000000000000000000000000000000000000000001000000000000000000000,
  28. SqLite = 0b0000000000000000000000000000000000000000010000000000000000000000,
  29. SqlConnectionString = 0b0000000000000000000000000000000000000000100000000000000000000000,
  30. Password = 0b0000000000000000000000000000000000000001000000000000000000000000,
  31. PhysicalPath = 0b0000000000000000000000000000000000000010000000000000000000000000,
  32. VistaDB = 0b0000000000000000000000000000000000000100000000000000000000000000,
  33. Validate = 0b0000000000000000000000000000000000001000000000000000000000000000,
  34. SqLiteConnectionString = 0b0000000000000000000000000000000000010000000000000000000000000000,
  35. SqlCE = 0b0000000000000000000000000000000000100000000000000000000000000000,
  36. NoStore = 0b0000000000000000000000000000000001000000000000000000000000000000,
  37. AppURL = 0b0000000000000000000000000000000010000000000000000000000000000000,
  38. NoProtocol = 0b0000000000000000000000000000000100000000000000000000000000000000,
  39. DBUserConnectionString = 0b0000000000000000000000000000001000000000000000000000000000000000,
  40. DBAdminConnectionString = 0b0000000000000000000000000000010000000000000000000000000000000000,
  41. WebPIApplicationID = 0b0000000000000000000000000000100000000000000000000000000000000000,
  42. Ignore = 0b0000000000000000000000000001000000000000000000000000000000000000,
  43. AutoGenerated = 0b0000000000000000000000000010000000000000000000000000000000000000,
  44. SiteUserName = 0b0000000000000000000000000100000000000000000000000000000000000000,
  45. SiteUserPassword = 0b0000000000000000000000001000000000000000000000000000000000000000,
  46. SiteBinding = 0b0000000000000000000000010000000000000000000000000000000000000000,
  47. DBDacFX = 0b0000000000000000000000100000000000000000000000000000000000000000,
  48. DBDacFXConnectionString = 0b0000000000000000000001000000000000000000000000000000000000000000
  49. }
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement