Created
April 26, 2016 11:39
-
-
Save sliekens/a0b3fe0c0ae556289affccb7e3fd75b2 to your computer and use it in GitHub Desktop.
DeploymentWellKnownTag
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| namespace Microsoft.Web.Deployment | |
| { | |
| public enum DeploymentWellKnownTag | |
| { | |
| None = 0b0000000000000000000000000000000000000000000000000000000000000000, | |
| AppHostConfig = 0b0000000000000000000000000000000000000000000000000000000000000001, | |
| AppPoolConfig = 0b0000000000000000000000000000000000000000000000000000000000000010, | |
| Boolean = 0b0000000000000000000000000000000000000000000000000000000000000100, | |
| ComObject32 = 0b0000000000000000000000000000000000000000000000000000000000001000, | |
| ComObject64 = 0b0000000000000000000000000000000000000000000000000000000000010000, | |
| DBAdminPassword = 0b0000000000000000000000000000000000000000000000000000000000100000, | |
| DBAdminUserName = 0b0000000000000000000000000000000000000000000000000000000001000000, | |
| DBConnectionString = 0b0000000000000000000000000000000000000000000000000000000010000000, | |
| DBName = 0b0000000000000000000000000000000000000000000000000000000100000000, | |
| DBServer = 0b0000000000000000000000000000000000000000000000000000001000000000, | |
| DBUserName = 0b0000000000000000000000000000000000000000000000000000010000000000, | |
| DBUserPassword = 0b0000000000000000000000000000000000000000000000000000100000000000, | |
| FlatFile = 0b0000000000000000000000000000000000000000000000000001000000000000, | |
| Hidden = 0b0000000000000000000000000000000000000000000000000010000000000000, | |
| IisApp = 0b0000000000000000000000000000000000000000000000000100000000000000, | |
| MetaKey = 0b0000000000000000000000000000000000000000000000001000000000000000, | |
| MySql = 0b0000000000000000000000000000000000000000000000010000000000000000, | |
| MySqlConnectionString = 0b0000000000000000000000000000000000000000000000100000000000000000, | |
| New = 0b0000000000000000000000000000000000000000000001000000000000000000, | |
| RegKey = 0b0000000000000000000000000000000000000000000010000000000000000000, | |
| SetAcl = 0b0000000000000000000000000000000000000000000100000000000000000000, | |
| Sql = 0b0000000000000000000000000000000000000000001000000000000000000000, | |
| SqLite = 0b0000000000000000000000000000000000000000010000000000000000000000, | |
| SqlConnectionString = 0b0000000000000000000000000000000000000000100000000000000000000000, | |
| Password = 0b0000000000000000000000000000000000000001000000000000000000000000, | |
| PhysicalPath = 0b0000000000000000000000000000000000000010000000000000000000000000, | |
| VistaDB = 0b0000000000000000000000000000000000000100000000000000000000000000, | |
| Validate = 0b0000000000000000000000000000000000001000000000000000000000000000, | |
| SqLiteConnectionString = 0b0000000000000000000000000000000000010000000000000000000000000000, | |
| SqlCE = 0b0000000000000000000000000000000000100000000000000000000000000000, | |
| NoStore = 0b0000000000000000000000000000000001000000000000000000000000000000, | |
| AppURL = 0b0000000000000000000000000000000010000000000000000000000000000000, | |
| NoProtocol = 0b0000000000000000000000000000000100000000000000000000000000000000, | |
| DBUserConnectionString = 0b0000000000000000000000000000001000000000000000000000000000000000, | |
| DBAdminConnectionString = 0b0000000000000000000000000000010000000000000000000000000000000000, | |
| WebPIApplicationID = 0b0000000000000000000000000000100000000000000000000000000000000000, | |
| Ignore = 0b0000000000000000000000000001000000000000000000000000000000000000, | |
| AutoGenerated = 0b0000000000000000000000000010000000000000000000000000000000000000, | |
| SiteUserName = 0b0000000000000000000000000100000000000000000000000000000000000000, | |
| SiteUserPassword = 0b0000000000000000000000001000000000000000000000000000000000000000, | |
| SiteBinding = 0b0000000000000000000000010000000000000000000000000000000000000000, | |
| DBDacFX = 0b0000000000000000000000100000000000000000000000000000000000000000, | |
| DBDacFXConnectionString = 0b0000000000000000000001000000000000000000000000000000000000000000 | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment