4 instantiations of HeaderBit
System.ServiceModel (4)
System\ServiceModel\Dispatcher\EndpointAddressMessageFilter.cs (2)
231bits[bits.Length - 1] = new HeaderBit(nextBit++); 237this.headerLookup.Add(key, new HeaderBit[] { new HeaderBit(nextBit++) });
System\ServiceModel\Dispatcher\EndpointAddressMessageFilterTable.cs (2)
220bits[i] = new HeaderBit(this.nextBit++); 230bits[i] = new HeaderBit(this.nextBit++);
22 references to HeaderBit
System.ServiceModel (22)
System\ServiceModel\Dispatcher\EndpointAddressMessageFilter.cs (8)
16using HeaderBit = System.ServiceModel.Dispatcher.EndpointAddressProcessor.HeaderBit; 107internal Dictionary<string, HeaderBit[]> HeaderLookup 189Dictionary<string, HeaderBit[]> headerLookup; 213HeaderBit[] bits; 216this.headerLookup = new Dictionary<string, HeaderBit[]>(); 237this.headerLookup.Add(key, new HeaderBit[] { new HeaderBit(nextBit++) }); 274internal Dictionary<string, HeaderBit[]> HeaderLookup 279this.headerLookup = new Dictionary<string, HeaderBit[]>();
System\ServiceModel\Dispatcher\EndpointAddressMessageFilterTable.cs (9)
18using HeaderBit = System.ServiceModel.Dispatcher.EndpointAddressProcessor.HeaderBit; 29Dictionary<string, HeaderBit[]> headerLookup; 69this.headerLookup = new Dictionary<string, HeaderBit[]>(); 206protected byte[] BuildMask(Dictionary<string, HeaderBit[]> headerLookup) 208HeaderBit[] bits; 210foreach (KeyValuePair<string, HeaderBit[]> item in headerLookup) 227bits = new HeaderBit[item.Value.Length]; 796internal Dictionary<string, HeaderBit[]> headerLookup; 798internal Candidate(MessageFilter filter, TFilterData data, byte[] mask, Dictionary<string, HeaderBit[]> headerLookup)
System\ServiceModel\Dispatcher\EndpointAddressProcessor.cs (3)
188internal void ProcessHeaders(Message msg, Dictionary<QName, int> qnameLookup, Dictionary<string, HeaderBit[]> headerLookup) 191HeaderBit[] bits; 218internal void SetBit(HeaderBit[] bits)
System\ServiceModel\Dispatcher\PrefixEndpointAddressMessageFilter.cs (2)
15using HeaderBit = System.ServiceModel.Dispatcher.EndpointAddressProcessor.HeaderBit; 100internal Dictionary<string, HeaderBit[]> HeaderLookup