9 lines
227 B
C#
Raw Normal View History

namespace System.ServiceModel.Channels
{
public class WrappedOptions
{
bool wrappedFlag = false;
public bool WrappedFlag { get { return this.wrappedFlag; } set { this.wrappedFlag = value; } }
}
}