| 1234567891011121314151617181920212223242526 |
- //------------------------------------------------------------
- // Copyright (c) Microsoft Corporation. All rights reserved.
- //------------------------------------------------------------
- namespace System.ServiceModel
- {
- public enum InstanceContextMode
- {
- PerSession,
- PerCall,
- Single,
- }
- static class InstanceContextModeHelper
- {
- static public bool IsDefined(InstanceContextMode x)
- {
- return
- x == InstanceContextMode.PerCall ||
- x == InstanceContextMode.PerSession ||
- x == InstanceContextMode.Single ||
- false;
- }
- }
- }
|