using System; using System.Collections.ObjectModel; using System.Reflection; using System.ServiceModel; using System.ServiceModel.Channels; using System.ServiceModel.Description; using System.ServiceModel.Dispatcher; namespace Behaviors { class MySer…
public class EntryIdInspector : IParameterInspector { public int intParamIndex { get; set; } string EntryIdFormat = @"\d{17}"; public EntryIdInspector(): this(0){ } public EntryIdInspector(int intParamIndex) { this.intParamIndex = intParamIndex;…