2 writes to SkipTokenProperties
System.Data.Services (2)
System\Data\Services\RequestDescription.cs (1)
178this.SkipTokenProperties = other.SkipTokenProperties;
System\Data\Services\RequestQueryProcessor.cs (1)
1097this.description.SkipTokenProperties = NeedSkipTokenVisitor.CollectSkipTokenProperties(this.topLevelOrderingInfo, rt);
5 references to SkipTokenProperties
System.Data.Services (5)
System\Data\Services\RequestDescription.cs (1)
178this.SkipTokenProperties = other.SkipTokenProperties;
System\Data\Services\RequestQueryProcessor.cs (1)
1173if (this.IsStandardPaged && this.description.SkipTokenProperties == null)
System\Data\Services\Serializers\Serializer.cs (3)
371Debug.Assert(this.RequestDescription.SkipTokenProperties != null, "Must have skip token properties collection"); 372Debug.Assert(this.RequestDescription.SkipTokenProperties.Count > 0, "Must have some valid ordered properties in the skip token properties collection"); 373skipTokenBuilder = new SkipTokenBuilderFromProperties(lastObject, this.Provider, this.RequestDescription.SkipTokenProperties);