9 lines
227 B
C#
9 lines
227 B
C#
|
namespace System.ServiceModel.Channels
|
|||
|
{
|
|||
|
public class WrappedOptions
|
|||
|
{
|
|||
|
bool wrappedFlag = false;
|
|||
|
public bool WrappedFlag { get { return this.wrappedFlag; } set { this.wrappedFlag = value; } }
|
|||
|
}
|
|||
|
}
|