6 writes to items
System.ServiceModel (6)
System\ServiceModel\SynchronizedReadOnlyCollection.cs (6)
19
this.
items
= new List<T>();
28
this.
items
= new List<T>();
39
this.
items
= new List<T>(list);
50
this.
items
= new List<T>(list.Length);
65
this.
items
= new List<T>(list);
67
this.
items
= list;
11 references to items
System.ServiceModel (11)
System\ServiceModel\SynchronizedReadOnlyCollection.cs (11)
52
this.
items
.Add(list[i]);
74
get { lock (this.sync) { return this.
items
.Count; } }
81
return this.
items
;
87
get { lock (this.sync) { return this.
items
[index]; } }
94
return this.
items
.Contains(value);
102
this.
items
.CopyTo(array, index);
110
return this.
items
.GetEnumerator();
118
return this.
items
.IndexOf(value);
182
ICollection asCollection = this.
items
as ICollection;
196
IEnumerable asEnumerable = this.
items
as IEnumerable;
200
return new EnumeratorAdapter(this.
items
);