1 //---------------------------------------------------------------- 2 // Copyright (c) Microsoft Corporation. All rights reserved. 3 //---------------------------------------------------------------- 4 5 namespace System.ServiceModel.Activities 6 { 7 using System.Xml.Linq; 8 9 public sealed class HostSettings 10 { HostSettings()11 public HostSettings() 12 { 13 } 14 15 public bool IncludeExceptionDetailInFaults { get; set; } 16 17 public bool UseNoPersistHandle { get; set; } 18 19 public XName ScopeName { get; set; } 20 } 21 } 22