public ServiceRequestContextWrapper(CustomServiceRequestHeader customHeader)
            : this()
        {
            if (ServiceRequestContext.Current == null)
            {
                return;
            }

            foreach (var header in customHeader.GetHeaders())
            {
                ServiceRequestContext.Current[header.Key] = header.Value;
            }
        }