WrappedOptions.cs 227 B

12345678
  1. namespace System.ServiceModel.Channels
  2. {
  3. public class WrappedOptions
  4. {
  5. bool wrappedFlag = false;
  6. public bool WrappedFlag { get { return this.wrappedFlag; } set { this.wrappedFlag = value; } }
  7. }
  8. }