Files
linux-packaging-mono/mcs/class/referencesource/System.ServiceModel/System/ServiceModel/Channels/WrappedOptions.cs

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; } }
}
}