tagVSQueryEditResultFlags Enumeration
This enumeration specifies bitflags, returned from the QueryEditFiles method, that tell whether a file was checked out and/or changed.
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
| Member name | Description | |
|---|---|---|
| QER_CheckoutCanceledOrFailed | Edit not allowed because checkout failed. | |
| QER_EditNotPossible | Edit will never be allowed because of current option settings or external conditions. | |
| QER_InMemoryEdit | Safe to edit files in memory. | |
| QER_InMemoryEditNotAllowed | Edit denied because in-memory edit not allowed. | |
| QER_MaybeChanged | Files changed on checkout. | |
| QER_MaybeCheckedout | Files checked-out to edit. | |
| QER_NoisyCheckoutRequired | Silent mode operation does not permit UI. | |
| QER_NoisyPromptRequired | Silent mode operation does not permit UI. | |
| QER_ReadOnlyNotUnderScc | Edit not allowed because file is read-only on disk. | |
| QER_ReadOnlyUnderScc | Edit not allowed because file is read-only and under source control (probably checked in). |
The QER_NoisyCheckoutRequired and QER_NoisyPromptRequired flags are synonymous.
The QER_ReadOnlyNotUnderScc and QER_ReadOnlyUnderScc return flags are useful when calling QueryEditFiles in report mode. However, note that these flags are only set when an edit is denied. If QueryEditFiles approves an edit, the caller should make no assumption about whether the files are read-only or under source control. The approval merely indicates that, regardless of status, the files are ready to be modified.