Services/Microsoft.Data.Services.Client.xml

<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Microsoft.Data.Services.Client</name>
    </assembly>
    <members>
        <member name="T:Microsoft.Data.OData.DebugUtils">
            <summary>
            Class with utility methods to help with debug only code.
            </summary>
        </member>
        <member name="M:Microsoft.Data.OData.DebugUtils.CheckNoExternalCallers">
            <summary>
            Checks that the method which called this helper method
            was not called by any code outside of the Microsoft.Data.OData.dll.
            </summary>
            <remarks>
            The method is only called when in DEBUG builds, since it's quite expensive and we expect
            all our external callers to run DEBUG builds at least sometimes.
            The method is also called when compiling for FxCop analysis, as we run our official FxCop
            pass on RET build and we need to check that all internal methods call this one to check for accessibility
            even though only in debug builds.
            </remarks>
        </member>
        <member name="M:Microsoft.Data.OData.DebugUtils.CheckNoExternalCallers(System.Boolean)">
            <summary>
            Checks that the method which called this helper method
            was not called by any code outside of the Microsoft.Data.OData.dll.
            </summary>
            <param name="checkPublicMethods">Set to true if this check is called from a public method which should also be checked for non-external callers.
            In that case, make sure that the calling method will not get inlined!</param>
            <remarks>
            The method is only called when in DEBUG builds, since it's quite expensive and we expect
            all our external callers to run DEBUG builds at least sometimes.
            The method is also called when compiling for FxCop analysis, as we run our official FxCop
            pass on RET build and we need to check that all internal methods call this one to check for accessibility
            even though only in debug builds.
            </remarks>
        </member>
        <member name="T:System.Data.Services.Client.EdmValueUtils">
            <summary>
            Class with utility methods to deal with EDM values
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.EdmValueUtils.ConvertPrimitiveValue(System.Object,Microsoft.Data.Edm.IEdmPrimitiveTypeReference)">
            <summary>
            Converts a primitive OData value to the corresponding <see cref="T:Microsoft.Data.Edm.Values.IEdmDelayedValue"/>.
            </summary>
            <param name="primitiveValue">The primitive OData value to convert.</param>
            <param name="type">The <see cref="T:Microsoft.Data.Edm.IEdmTypeReference"/> for the primitive value (if available).</param>
            <returns>An <see cref="T:Microsoft.Data.Edm.Values.IEdmDelayedValue"/> for the <paramref name="primitiveValue"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EdmValueUtils.ToClrValue(Microsoft.Data.Edm.Values.IEdmPrimitiveValue)">
            <summary>
            Gets the clr value of the edm value based on its type.
            </summary>
            <param name="edmValue">The edm value.</param>
            <returns>The clr value</returns>
        </member>
        <member name="M:System.Data.Services.Client.EdmValueUtils.ConvertFloatingValue(Microsoft.Data.Edm.Values.IEdmFloatingValue,Microsoft.Data.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Converts a floating-point edm value to a clr value
            </summary>
            <param name="floatingValue">The edm floating-point value.</param>
            <param name="primitiveKind">Kind of the primitive.</param>
            <returns>The converted value</returns>
        </member>
        <member name="M:System.Data.Services.Client.EdmValueUtils.ConvertIntegerValue(Microsoft.Data.Edm.Values.IEdmIntegerValue,Microsoft.Data.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Converts an integer edm value to a clr value.
            </summary>
            <param name="integerValue">The integer value.</param>
            <param name="primitiveKind">Kind of the primitive.</param>
            <returns>The converted value</returns>
        </member>
        <member name="M:System.Data.Services.Client.EdmValueUtils.ConvertPrimitiveValueWithoutTypeCode(System.Object,Microsoft.Data.Edm.IEdmPrimitiveTypeReference)">
            <summary>
            Convert a primitive value which didn't match any of the known values of the <see cref="T:System.TypeCode"/> enumeration.
            </summary>
            <param name="primitiveValue">The value to convert.</param>
            <param name="type">The expected primitive type or null.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EdmValueUtils.TryConvertClientSpecificPrimitiveValue(System.Object,Microsoft.Data.Edm.IEdmPrimitiveTypeReference,Microsoft.Data.Edm.Values.IEdmDelayedValue@)">
            <summary>
            Tries to convert the given value if it is of a type specific to the client library but still able to be mapped to EDM.
            </summary>
            <param name="primitiveValue">The value to convert.</param>
            <param name="type">The expected type of the value or null.</param>
            <param name="convertedValue">The converted value, if conversion was possible.</param>
            <returns>Whether or not conversion was possible.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EdmValueUtils.EnsurePrimitiveType(Microsoft.Data.Edm.IEdmPrimitiveTypeReference,Microsoft.Data.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Ensures a primitive type reference for a given primitive type kind.
            </summary>
            <param name="type">The possibly null type reference.</param>
            <param name="primitiveKindFromValue">The primitive type kind to ensure.</param>
            <returns>An <see cref="T:Microsoft.Data.Edm.IEdmPrimitiveTypeReference"/> instance created for the <paramref name="primitiveKindFromValue"/>
            if <paramref name="type"/> is null; if <paramref name="type"/> is not null, validates it and then returns it.</returns>
        </member>
        <member name="T:System.Data.Services.Client.ODataEntityMetadataBuilder">
            <summary>
            Extensibility point for customizing how OData entity metadata (edit-links, IDs, ETags, etc) is built.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetEditLink">
            <summary>
            Gets the edit link of the entity.
            </summary>
            <returns>
            The absolute URI of the edit link for the entity.
            Or null if it is not possible to determine the edit link.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetReadLink">
            <summary>
            Gets the read link of the entity.
            </summary>
            <returns>
            The absolute URI of the read link for the entity.
            Or null if it is not possible to determine the read link.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetId">
            <summary>
            Gets the ID of the entity.
            </summary>
            <returns>
            The ID for the entity.
            Or null if it is not possible to determine the ID.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetETag">
            <summary>
            Gets the ETag of the entity.
            </summary>
            <returns>
            The ETag for the entity.
            Or null if it is not possible to determine the ETag.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetStreamEditLink(System.String)">
            <summary>
            Gets the edit link of a stream value.
            </summary>
            <param name="streamPropertyName">The name of the stream property the edit link is computed for;
            or null for the default media resource.</param>
            <returns>
            The absolute URI of the edit link for the specified stream property or the default media resource.
            Or null if it is not possible to determine the stream edit link.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetStreamReadLink(System.String)">
            <summary>
            Gets the read link of a stream value.
            </summary>
            <param name="streamPropertyName">The name of the stream property the read link is computed for;
            or null for the default media resource.</param>
            <returns>
            The absolute URI of the read link for the specified stream property or the default media resource.
            Or null if it is not possible to determine the stream read link.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetNavigationLinkUri(System.String,System.Uri,System.Boolean)">
            <summary>
            Gets the navigation link URI for the specified navigation property.
            </summary>
            <param name="navigationPropertyName">The name of the navigation property to get the navigation link URI for.</param>
            <param name="navigationLinkUrl">The value of the link URI as seen on the wire or provided explicitly by the user or previously returned by the metadata builder, which may be null.</param>
            <param name="hasNavigationLinkUrl">true if the value of the <paramref name="navigationLinkUrl"/> was seen on the wire or provided explicitly by the user or previously returned by
            the metadata builder, false otherwise. This flag allows the metadata builder to determine whether a null navigation link url is an uninitialized value or a value that was set explicitly.</param>
            <returns>
            The navigation link URI for the navigation property.
            null if its not possible to determine the navigation link for the specified navigation property.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetAssociationLinkUri(System.String,System.Uri,System.Boolean)">
            <summary>
            Gets the association link URI for the specified navigation property.
            </summary>
            <param name="navigationPropertyName">The name of the navigation property to get the association link URI for.</param>
            <param name="associationLinkUrl">The value of the link URI as seen on the wire or provided explicitly by the user or previously returned by the metadata builder, which may be null.</param>
            <param name="hasAssociationLinkUrl">true if the value of the <paramref name="associationLinkUrl"/> was seen on the wire or provided explicitly by the user or previously returned by
            the metadata builder, false otherwise. This flag allows the metadata builder to determine whether a null association link url is an uninitialized value or a value that was set explicitly.</param>
            <returns>
            The association link URI for the navigation property.
            null if its not possible to determine the association link for the specified navigation property.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetOperationTargetUri(System.String,System.String)">
            <summary>
            Get the operation target URI for the specified <paramref name="operationName"/>.
            </summary>
            <param name="operationName">The fully qualified name of the operation for which to get the target URI.</param>
            <param name="bindingParameterTypeName">The binding parameter type name to include in the target, or null/empty if there is none.</param>
            <returns>
            The target URI for the operation.
            null if it is not possible to determine the target URI for the specified operation.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataEntityMetadataBuilder.GetOperationTitle(System.String)">
            <summary>
            Get the operation title for the specified <paramref name="operationName"/>.
            </summary>
            <param name="operationName">The fully qualified name of the operation for which to get the target URI.</param>
            <returns>
            The title for the operation.
            null if it is not possible to determine the title for the specified operation.
            </returns>
        </member>
        <member name="T:System.Data.Services.Client.ODataUriBuilder">
            <summary>
            Extensibility point for customizing how OData uri's are built.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildBaseUri">
            <summary>
            Builds the base URI for the entity container.
            </summary>
            <returns>
            The base URI for the entity container.
            This can be either an absolute URI,
            or relative URI which will be combined with the URI of the metadata document for the service.
            null if the model doesn't have the service base URI annotation.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildEntitySetUri(System.Uri,System.String)">
            <summary>
            Builds the URI for an entity set.
            </summary>
            <param name="baseUri">The URI to append to.</param>
            <param name="entitySetName">The entity set name.</param>
            <returns>The entity set URI.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildEntityInstanceUri(System.Uri,Microsoft.Data.Edm.Values.IEdmStructuredValue)">
            <summary>
            Appends to create the entity instance URI for the specified <paramref name="entityInstance"/>.
            </summary>
            <param name="baseUri">The URI to append to</param>
            <param name="entityInstance">The entity instance to use.</param>
            <returns>
            The entity instance URI.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildStreamEditLinkUri(System.Uri,System.String)">
            <summary>
            Builds the edit link for a stream property.
            </summary>
            <param name="baseUri">The URI to append to.</param>
            <param name="streamPropertyName">
            The name of the stream property the link is computed for;
            or null for the default media resource.
            </param>
            <returns>The edit link for the stream.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildStreamReadLinkUri(System.Uri,System.String)">
            <summary>
            Builds the read link for a stream property.
            </summary>
            <param name="baseUri">The URI to append to.</param>
            <param name="streamPropertyName">
            The name of the stream property the link is computed for;
            or null for the default media resource.
            </param>
            <returns>The read link for the stream.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildNavigationLinkUri(System.Uri,System.String)">
            <summary>
            Builds the navigation link for the navigation property.
            </summary>
            <param name="baseUri">The URI to append to.</param>
            <param name="navigationPropertyName">The name of the navigation property to get the navigation link URI for.</param>
            <returns>The navigation link URI for the navigation property.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildAssociationLinkUri(System.Uri,System.String)">
            <summary>
            Builds the association link for the navigation property.
            </summary>
            <param name="baseUri">The URI to append to.</param>
            <param name="navigationPropertyName">The name of the navigation property to get the association link URI for.</param>
            <returns>The association link URI for the navigation property.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.BuildOperationTargetUri(System.Uri,System.String,System.String)">
            <summary>
            Builds the operation target URI for the specified <paramref name="operationName"/>.
            </summary>
            <param name="baseUri">The URI to append to.</param>
            <param name="operationName">The fully qualified name of the operation for which to get the target URI.</param>
            <param name="bindingParameterTypeName">The binding parameter type name to include in the target, or null/empty if there is none.</param>
            <returns>The target URI for the operation.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataUriBuilder.AppendTypeSegment(System.Uri,System.String)">
            <summary>
            Builds a URI with the given type name appended as a new segment on the base URI.
            </summary>
            <param name="baseUri">The URI to append to.</param>
            <param name="typeName">The fully qualified type name to append.</param>
            <returns>The URI with the type segment appended.</returns>
        </member>
        <member name="T:Microsoft.Data.OData.Json.JsonSharedUtils">
            <summary>
            Shared JSON util code for ODataLib and Server.
            </summary>
        </member>
        <member name="M:Microsoft.Data.OData.Json.JsonSharedUtils.IsDoubleValueSerializedAsString(System.Double)">
            <summary>
            Determines if the given double is serialized as a string in JSON.
            </summary>
            <param name="value">The value to check.</param>
            <returns>true if the value should be written as a string, false if should be written as a JSON number.</returns>
        </member>
        <member name="M:Microsoft.Data.OData.Json.JsonSharedUtils.ValueTypeMatchesJsonType(Microsoft.Data.OData.ODataPrimitiveValue,Microsoft.Data.Edm.IEdmPrimitiveTypeReference)">
            <summary>
            Determines if the given primitive value is of a basic type where we can rely on just the JSON representation to convey type information.
            If so, we don't have to write the type name.
            </summary>
            <param name="primitiveValue">The primitive value in question.</param>
            <param name="valueTypeReference">The type of the primitive value.</param>
            <returns>true if the given primitive value is of a basic JSON type, false otherwise.</returns>
        </member>
        <member name="T:System.Data.Services.Client.SimpleLazy`1">
            <summary>
            A simple implementation of LazyOfT since the framework version is not available in all platforms we compile this code in...
            </summary>
            <typeparam name="T">Type to lazy create.</typeparam>
        </member>
        <member name="F:System.Data.Services.Client.SimpleLazy`1.mutex">
            <summary>
            For thread safty in creating the value.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SimpleLazy`1.factory">
            <summary>
            The factory method to create the lazy instance.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SimpleLazy`1.value">
            <summary>
            Holds the lazy instance to create.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SimpleLazy`1.valueCreated">
            <summary>
            true if the factory method has been called, false otherwise.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.SimpleLazy`1.#ctor(System.Func{`0})">
            <summary>
            Creates an instance of ODataLazyOfT.
            </summary>
            <param name="factory">The factory method to create the lazy instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.SimpleLazy`1.#ctor(System.Func{`0},System.Boolean)">
            <summary>
            Creates an instance of ODataLazyOfT.
            </summary>
            <param name="factory">The factory method to create the lazy instance.</param>
            <param name="isThreadSafe">true if the value will be created in a thread safety, false assume single thread access to Value.</param>
        </member>
        <member name="M:System.Data.Services.Client.SimpleLazy`1.CreateValue">
            <summary>
            Creates the value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.SimpleLazy`1.Value">
            <summary>
            Creates the value if it hasn't already been created and returns the created value.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.CommonUtil">
            <summary>
            Common defintions and functions for ALL product assemblies
            </summary>
            <summary>
            Common defintions and functions for the server and client lib
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.CommonUtil.OutOfMemoryType">
            <summary>Type of OutOfMemoryException.</summary>
        </member>
        <member name="F:System.Data.Services.Client.CommonUtil.StackOverflowType">
            <summary>Type of StackOverflowException.</summary>
        </member>
        <member name="F:System.Data.Services.Client.CommonUtil.ThreadAbortType">
            <summary>Type of ThreadAbortException.</summary>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.IsCatchableExceptionType(System.Exception)">
            <summary>
            Determines whether the specified exception can be caught and
            handled, or whether it should be allowed to continue unwinding.
            </summary>
            <param name="e"><see cref="T:System.Exception"/> to test.</param>
            <returns>
            true if the specified exception can be caught and handled;
            false otherwise.
            </returns>
        </member>
        <member name="F:System.Data.Services.Client.CommonUtil.unsupportedTypes">
            <summary>
            List of types unsupported by the client
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.IsUnsupportedType(System.Type)">
            <summary>
            Test whether a type is unsupported by the client lib
            </summary>
            <param name="type">The type to test</param>
            <returns>Returns true if the type is not supported</returns>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.GetCollectionItemTypeName(System.String,System.Boolean)">
            <summary>
            Returns collection item type name or null if the provided type name is not a collection.
            </summary>
            <param name="typeName">Collection type name read from payload.</param>
            <param name="isNested">Whether it is a nested (recursive) call.</param>
            <returns>Collection element type name or null if not a collection.</returns>
            <remarks>
            The following rules are used for collection type names:
            - it has to start with "Collection(" and end with ")" - trailing and leading whitespaces make the type not to be recognized as collection.
            - there is to be no characters (including whitespaces) between "Collection" and "(" - otherwise it won't be recognized as collection
            - collection item type name has to be a non-empty string - i.e. "Collection()" won't be recognized as collection
            - nested collection - e.g. "Collection(Collection(Edm.Int32))" - are not supported - we will throw
            Note the following are examples of valid type names which are not collection:
            - "Collection()"
            - " Collection(Edm.Int32)"
            - "Collection (Edm.Int32)"
            - "Collection("
            If the type name is not recognized as a collection it will be eventually passed to type resolver if it is not a known primitive type.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.ConvertToODataVersion(System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>
            Convert the DataServiceProtocolVersion to ODataVersion.
            </summary>
            <param name="maxProtocolVersion">DataServiceProtocolVersion value to convert.</param>
            <returns>an ODataVersion value for the given DataServiceProtocolVersion value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.ConvertToODataVersion(System.Version)">
            <summary>
            Converts the given version instance to ODataVersion enum.
            </summary>
            <param name="version">Version instance containing the response payload.</param>
            <returns>ODataVersion enum value for the given version.</returns>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.GetModelTypeName(System.Type)">
            <summary>
            Gets the type name (without namespace) of the specified <paramref name="type"/>,
            appropriate as an externally-visible type name.
            </summary>
            <param name="type">Type to get name for.</param>
            <returns>The type name for <paramref name="type"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.GetModelTypeNamespace(System.Type)">
            <summary>
            Gets the type namespace of the specified <paramref name="type"/>,
            appropriate as an externally-visible type name.
            </summary>
            <param name="type">Type to get namespace for.</param>
            <returns>The namespace for <paramref name="type"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.TryReadVersion(System.String,System.Collections.Generic.KeyValuePair{System.Version,System.String}@)">
            <summary>Tries to read a WCF Data Service version string.</summary>
            <param name="text">Text to read.</param>
            <param name="result">Parsed version and trailing text.</param>
            <returns>true if the version was read successfully; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.CommonUtil.SetDefaultMessageQuotas(Microsoft.Data.OData.ODataMessageQuotas)">
            <summary>
            Set the message quota limits for WCF Data services server.
            </summary>
            <param name="messageQuotas">Instance of ODataMessageQuotas.</param>
        </member>
        <member name="T:System.Data.Services.Client.ContentTypeUtil">
            <summary>Provides helper methods for processing HTTP requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ContentTypeUtil.EncodingUtf8NoPreamble">
            <summary>UTF-8 encoding, without the BOM preamble.</summary>
            <remarks>
            While a BOM preamble on UTF8 is generally benign, it seems that some MIME handlers under IE6 will not
            process the payload correctly when included.
             
            Because the data service should include the encoding as part of the Content-Type in the response,
            there should be no ambiguity as to what encoding is being used.
             
            For further information, see http://www.unicode.org/faq/utf_bom.html#BOM.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.ReadContentType(System.String,System.String@)">
            <summary>Reads a Content-Type header and extracts the MIME type/subtype.</summary>
            <param name="contentType">The Content-Type header.</param>
            <param name="mime">The MIME type in standard type/subtype form, without parameters.</param>
            <returns>parameters of content type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.WriteContentType(System.String,System.Data.Services.Client.ContentTypeUtil.MediaParameter[])">
            <summary>Builds a Content-Type given the mime type and all the parameters.</summary>
            <param name="mimeType">The MIME type in standard type/subtype form, without parameters.</param>
            <param name="parameters">Parameters to be appended in the mime type.</param>
            <returns>content type containing the mime type and all the parameters.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.ReadContentType(System.String,System.String@,System.Text.Encoding@)">
            <summary>Reads a Content-Type header and extracts the MIME type/subtype and encoding.</summary>
            <param name="contentType">The Content-Type header.</param>
            <param name="mime">The MIME type in standard type/subtype form, without parameters.</param>
            <param name="encoding">Encoding (possibly null).</param>
            <returns>parameters of content type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.EncodingFromName(System.String)">
            <summary>Gets the named encoding if specified.</summary>
            <param name="name">Name (possibly null or empty).</param>
            <returns>
            The named encoding if specified; the encoding for HTTP missing
            charset specification otherwise.
            </returns>
            <remarks>
            See http://tools.ietf.org/html/rfc2616#section-3.4.1 for details.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.ReadMediaTypeAndSubtype(System.String,System.Int32@,System.String@,System.String@)">
            <summary>Reads the type and subtype specifications for a MIME type.</summary>
            <param name='text'>Text in which specification exists.</param>
            <param name='textIndex'>Pointer into text.</param>
            <param name='type'>Type of media found.</param>
            <param name='subType'>Subtype of media found.</param>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.ReadMediaType(System.String)">
            <summary>Reads a media type definition as used in a Content-Type header.</summary>
            <param name="text">Text to read.</param>
            <returns>The <see cref="T:System.Data.Services.Client.ContentTypeUtil.MediaType"/> defined by the specified <paramref name="text"/></returns>
            <remarks>All syntactic errors will produce a 400 - Bad Request status code.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.ReadToken(System.String,System.Int32@)">
            <summary>
            Reads a token on the specified text by advancing an index on it.
            </summary>
            <param name="text">Text to read token from.</param>
            <param name="textIndex">Index for the position being scanned on text.</param>
            <returns>true if the end of the text was reached; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.SkipWhitespace(System.String,System.Int32@)">
            <summary>
            Skips whitespace in the specified text by advancing an index to
            the next non-whitespace character.
            </summary>
            <param name="text">Text to scan.</param>
            <param name="textIndex">Index to begin scanning from.</param>
            <returns>true if the end of the string was reached, false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.ReadMediaTypeParameter(System.String,System.Int32@,System.Data.Services.Client.ContentTypeUtil.MediaParameter[]@)">
            <summary>Read a parameter for a media type/range.</summary>
            <param name="text">Text to read from.</param>
            <param name="textIndex">Pointer in text.</param>
            <param name="parameters">Array with parameters to grow as necessary.</param>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.ReadQuotedParameterValue(System.String,System.String,System.Int32@)">
            <summary>
            Reads Mime type parameter value for a particular parameter in the Content-Type/Accept headers.
            </summary>
            <param name="parameterName">Name of parameter.</param>
            <param name="headerText">Header text.</param>
            <param name="textIndex">Parsing index in <paramref name="headerText"/>.</param>
            <returns>String representing the value of the <paramref name="parameterName"/> parameter.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.IsHttpSeparator(System.Char)">
            <summary>
            Determines whether the specified character is a valid HTTP separator.
            </summary>
            <param name="c">Character to verify.</param>
            <returns>true if c is a separator; false otherwise.</returns>
            <remarks>
            See RFC 2616 2.2 for further information.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.IsHttpToken(System.Char)">
            <summary>
            Determines whether the specified character is a valid HTTP header token character.
            </summary>
            <param name="c">Character to verify.</param>
            <returns>true if c is a valid HTTP header token character; false otherwise.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ContentTypeUtil.FallbackEncoding">
            <summary>Encoding to fall back to an appropriate encoding is not available.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ContentTypeUtil.MissingEncoding">
            <summary>Encoding implied by an unspecified encoding value.</summary>
            <remarks>See http://tools.ietf.org/html/rfc2616#section-3.4.1 for details.</remarks>
        </member>
        <member name="T:System.Data.Services.Client.ContentTypeUtil.MediaParameter">
            <summary>Class to store media parameter information.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.MediaParameter.#ctor(System.String,System.String,System.Boolean)">
            <summary>
            Creates a new instance of MediaParameter.
            </summary>
            <param name="name">Name of the parameter.</param>
            <param name="value">Value of the parameter.</param>
            <param name="isQuoted">True if the value of the parameter is quoted, otherwise false.</param>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.MediaParameter.GetOriginalValue">
            <summary>
            Gets the original value of the parameter.
            </summary>
            <returns>the original value of the parameter.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ContentTypeUtil.MediaParameter.Name">
            <summary>Gets the name of the parameter.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ContentTypeUtil.MediaParameter.Value">
            <summary>Value of the parameter.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ContentTypeUtil.MediaParameter.IsQuoted">
            <summary>true if the value is quoted, otherwise false.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ContentTypeUtil.MediaType">
            <summary>Use this class to represent a media type definition.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ContentTypeUtil.MediaType.parameters">
            <summary>Parameters specified on the media type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ContentTypeUtil.MediaType.subType">
            <summary>Sub-type specification (for example, 'plain').</summary>
        </member>
        <member name="F:System.Data.Services.Client.ContentTypeUtil.MediaType.type">
            <summary>Type specification (for example, 'text').</summary>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.MediaType.#ctor(System.String,System.String,System.Data.Services.Client.ContentTypeUtil.MediaParameter[])">
            <summary>
            Initializes a new <see cref="T:System.Data.Services.Client.ContentTypeUtil.MediaType"/> read-only instance.
            </summary>
            <param name="type">Type specification (for example, 'text').</param>
            <param name="subType">Sub-type specification (for example, 'plain').</param>
            <param name="parameters">Parameters specified on the media type.</param>
        </member>
        <member name="M:System.Data.Services.Client.ContentTypeUtil.MediaType.SelectEncoding">
            <summary>
            Selects the encoding appropriate for this media type specification
            (possibly null).
            </summary>
            <returns>
            The encoding explicitly defined on the media type specification, or
            the default encoding for well-known media types.
            </returns>
            <remarks>
            As per http://tools.ietf.org/html/rfc2616#section-3.7, the type,
            subtype and parameter name attributes are case-insensitive.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.ContentTypeUtil.MediaType.MimeType">
            <summary>Returns the MIME type in standard type/subtype form, without parameters.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ContentTypeUtil.MediaType.Parameters">
            <summary>media type parameters</summary>
        </member>
        <member name="T:System.Data.Services.Client.LiteralFormatter">
            <summary>
            Component for formatting literals for use in URIs, ETags, and skip-tokens.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.LiteralFormatter.HexValues">
            <summary>Constant table of nibble-to-hex convertion values.</summary>
        </member>
        <member name="F:System.Data.Services.Client.LiteralFormatter.DefaultInstance">
            <summary>Default singleton instance for parenthetical keys, etags, or skiptokens.</summary>
        </member>
        <member name="F:System.Data.Services.Client.LiteralFormatter.KeyAsSegmentInstance">
            <summary>Default singleton instance for keys formatted as segments.</summary>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.ForKeys(System.Boolean)">
            <summary>
            Gets the literal formatter for keys.
            </summary>
            <param name="keysAsSegment">if set to <c>true</c> then the key is going to be written as a segment, rather than in parentheses.</param>
            <returns>The literal formatter for keys.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.Format(System.Object)">
            <summary>Converts the specified value to an encoded, serializable string for URI key.</summary>
            <param name="value">Non-null value to convert.</param>
            <returns>value converted to a serializable string for URI key.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.EscapeResultForUri(System.String)">
            <summary>
            Escapes the result accoridng to URI escaping rules.
            </summary>
            <param name="result">The result to escape.</param>
            <returns>The escaped string.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.ConvertByteArrayToKeyString(System.Byte[])">
            <summary>Converts the given byte[] into string.</summary>
            <param name="byteArray">byte[] that needs to be converted.</param>
            <returns>String containing hex values representing the byte[].</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.FormatRawLiteral(System.Object)">
            <summary>
            Formats the literal without a type prefix, quotes, or escaping.
            </summary>
            <param name="value">The non-null value to format.</param>
            <returns>The formatted literal, without type marker or quotes.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.FormatAndEscapeLiteral(System.Object)">
            <summary>
            Formats the literal without a type prefix or quotes, but does escape it.
            </summary>
            <param name="value">The non-null value to format.</param>
            <returns>The formatted literal, without type marker or quotes.</returns>
        </member>
        <member name="P:System.Data.Services.Client.LiteralFormatter.ForConstants">
            <summary>
            Gets the literal formatter for URL constants.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.LiteralFormatter.SharedUtils">
            <summary>
            Helper utilities that capture any deltas between ODL, the WCF DS Client, and the WCF DS Server.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.SharedUtils.CreateExceptionForUnconvertableType(System.Object)">
            <summary>
            Creates a new exception instance to be thrown if the value is not a type that can be formatted as a literal.
            DEVNOTE: Will return a different exception depending on whether this is ODataLib, the WCF DS Server, or the WCF DS client.
            </summary>
            <param name="value">The literal value that could not be converted.</param>
            <returns>The exception that should be thrown.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.SharedUtils.TryConvertToStandardType(System.Object,System.Object@)">
            <summary>
            Tries to convert the given value to one of the standard recognized types. Used specifically for handling XML and binary types.
            </summary>
            <param name="value">The original value.</param>
            <param name="converted">The value converted to one of the standard types.</param>
            <returns>Whether or not the value was converted.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.SharedUtils.AppendDecimalMarkerToDouble(System.String)">
            <summary>
            Appends the decimal marker to string form of double value if necessary.
            DEVNOTE: Only used by the client and ODL, for legacy/back-compat reasons.
            </summary>
            <param name="input">Input string.</param>
            <returns>String with decimal marker optionally added.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.SharedUtils.ShouldAppendLiteralSuffixToDouble(System.Double)">
            <summary>
            Returns whether a 'd' literal suffix to a double value based on its value.
            DEVNOTE: The WCF DS client never added the 'd', but WCF DS Server and ODL do.
            </summary>
            <param name="value">The value itself.</param>
            <returns>Whether or not to append the 'd' suffix.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.SharedUtils.TryGetByteArrayFromBinary(System.Object,System.Byte[]@)">
            <summary>
            Tries to convert an instance of System.Data.Linq.Binary to a byte array.
            </summary>
            <param name="value">The original value which might be an instance of System.Data.Linq.Binary.</param>
            <param name="array">The converted byte array, if it was converted.</param>
            <returns>Whether or not the value was converted.</returns>
        </member>
        <member name="T:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter">
            <summary>
            Default literal formatter implementation.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter.disableUrlEncoding">
            <summary>If true, literals will not be URL encoded.</summary>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter.#ctor">
            <summary>
            Creates a new instance of <see cref="T:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter"/>.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter.#ctor(System.Boolean)">
            <summary>
            Creates a new instance of <see cref="T:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter"/>.
            </summary>
            <param name="disableUrlEncoding">If true, literals will not be URL encoded.</param>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter.Format(System.Object)">
            <summary>Converts the specified value to an encoded, serializable string for URI key.</summary>
            <param name="value">Non-null value to convert.</param>
            <returns>value converted to a serializable string for URI key.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter.EscapeResultForUri(System.String)">
            <summary>
            Escapes the result accoridng to URI escaping rules.
            </summary>
            <param name="result">The result to escape.</param>
            <returns>The escaped string.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.DefaultLiteralFormatter.FormatLiteralWithTypePrefix(System.Object)">
            <summary>
            Formats the literal with a type prefix and quotes (if the type requires it).
            </summary>
            <param name="value">The value to format.</param>
            <returns>The formatted literal, with type marker if needed.</returns>
        </member>
        <member name="T:System.Data.Services.Client.LiteralFormatter.KeysAsSegmentsLiteralFormatter">
            <summary>
            Literal formatter for keys which are written as URI segments.
            Very similar to the default, but it never puts the type markers or single quotes around the value.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.KeysAsSegmentsLiteralFormatter.#ctor">
            <summary>
            Creates a new instance of <see cref="T:System.Data.Services.Client.LiteralFormatter.KeysAsSegmentsLiteralFormatter"/>.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.KeysAsSegmentsLiteralFormatter.Format(System.Object)">
            <summary>Converts the specified value to an encoded, serializable string for URI key.</summary>
            <param name="value">Non-null value to convert.</param>
            <returns>value converted to a serializable string for URI key.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LiteralFormatter.KeysAsSegmentsLiteralFormatter.EscapeLeadingDollarSign(System.String)">
            <summary>
            If the string starts with a '$', prepends another '$' to escape it.
            </summary>
            <param name="stringValue">The string value.</param>
            <returns>The string value with a leading '$' escaped, if one was present.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Providers.EdmComplexTypeWithDelayLoadedProperties">
            <summary>
            An <see cref="T:Microsoft.Data.Edm.IEdmComplexType"/> implementation that supports delay-loading of properties.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Providers.EdmComplexTypeWithDelayLoadedProperties.propertyLoadAction">
            <summary>An action that is used to create the properties for this type.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Providers.EdmComplexTypeWithDelayLoadedProperties.#ctor(System.String,System.String,Microsoft.Data.Edm.IEdmComplexType,System.Boolean,System.Action{System.Data.Services.Client.Providers.EdmComplexTypeWithDelayLoadedProperties})">
            <summary>
            Initializes a new instance of the EdmComplexTypeWithDelayLoadedProperties class.
            </summary>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
            <param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
            <param name="propertyLoadAction">An action that is used to create the properties for this type.</param>
        </member>
        <member name="M:System.Data.Services.Client.Providers.EdmComplexTypeWithDelayLoadedProperties.EnsurePropertyLoaded">
            <summary>
            Ensures that the properties have been loaded and can be used.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Providers.EdmComplexTypeWithDelayLoadedProperties.DeclaredProperties">
            <summary>
            Gets the properties declared immediately within this type.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Providers.EdmEntityTypeWithDelayLoadedProperties">
            <summary>
            An <see cref="T:Microsoft.Data.Edm.IEdmEntityType"/> implementation that supports delay-loading of properties.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Providers.EdmEntityTypeWithDelayLoadedProperties.propertyLoadAction">
            <summary>An action that is used to create the properties for this type.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Providers.EdmEntityTypeWithDelayLoadedProperties.#ctor(System.String,System.String,Microsoft.Data.Edm.IEdmEntityType,System.Boolean,System.Boolean,System.Action{System.Data.Services.Client.Providers.EdmEntityTypeWithDelayLoadedProperties})">
            <summary>
            Initializes a new instance of the EdmEntityTypeWithDelayLoadedProperties class.
            </summary>
            <param name="namespaceName">Namespace the entity belongs to.</param>
            <param name="name">Name of the entity.</param>
            <param name="baseType">The base type of this entity type.</param>
            <param name="isAbstract">Denotes an entity that cannot be instantiated.</param>
            <param name="isOpen">Denotes if the type is open.</param>
            <param name="propertyLoadAction">An action that is used to create the properties for this type.</param>
        </member>
        <member name="M:System.Data.Services.Client.Providers.EdmEntityTypeWithDelayLoadedProperties.EnsurePropertyLoaded">
            <summary>
            Ensures that the properties have been loaded and can be used.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Providers.EdmEntityTypeWithDelayLoadedProperties.DeclaredKey">
            <summary>
            Gets or sets the structural properties of the entity type that make up the entity key.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Providers.EdmEntityTypeWithDelayLoadedProperties.DeclaredProperties">
            <summary>
            Gets the properties declared immediately within this type.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.KeySerializer">
            <summary>
            Component for serializing entity key values for building identities, edit links, etc.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.KeySerializer.DefaultInstance">
            <summary>Singleton instance of the default serializer.</summary>
        </member>
        <member name="F:System.Data.Services.Client.KeySerializer.SegmentInstance">
            <summary>Singleton instance of the segment-based serializer.</summary>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.Create(System.Data.Services.Client.UrlConvention)">
            <summary>
            Creates a new key serializer.
            </summary>
            <param name="urlConvention">The url convention to use.</param>
            <returns>
            A new key serializer.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.AppendKeyExpression``1(System.Text.StringBuilder,System.Collections.Generic.ICollection{``0},System.Func{``0,System.String},System.Func{``0,System.Object})">
            <summary>
            Appends the key expression for an entity to the given <see cref="T:System.Text.StringBuilder"/>
            </summary>
            <typeparam name="TProperty">The type used to represent properties.</typeparam>
            <param name="builder">The builder to append onto.</param>
            <param name="keyProperties">The key properties.</param>
            <param name="getPropertyName">The callback to get each property's name.</param>
            <param name="getPropertyValue">The callback to get each property's value.</param>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.GetKeyValueAsString``1(System.Func{``0,System.Object},``0,System.Data.Services.Client.LiteralFormatter)">
            <summary>
            Gets the value of the key property and serializes it to a string.
            </summary>
            <typeparam name="TProperty">The type used to represent properties.</typeparam>
            <param name="getPropertyValue">The callback to get the value for a property.</param>
            <param name="property">The key property.</param>
            <param name="literalFormatter">The literal formatter to use.</param>
            <returns>The serialized key property value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.AppendKeyWithParentheses``1(System.Text.StringBuilder,System.Collections.Generic.ICollection{``0},System.Func{``0,System.String},System.Func{``0,System.Object})">
            <summary>
            Appends the key using the parentheses-based syntax (e.g. Customers(1)) onto the given <see cref="T:System.Text.StringBuilder"/>.
            </summary>
            <param name="builder">The builder to append onto.</param>
            <typeparam name="TProperty">The type used to represent properties.</typeparam>
            <param name="keyProperties">The key properties.</param>
            <param name="getPropertyName">The callback to get each property's name.</param>
            <param name="getPropertyValue">The callback to get each property's value.</param>
        </member>
        <member name="T:System.Data.Services.Client.KeySerializer.DefaultKeySerializer">
            <summary>
            Default implementation of the key serializer which uses parentheses (e.g. Customers(1)).
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.DefaultKeySerializer.AppendKeyExpression``1(System.Text.StringBuilder,System.Collections.Generic.ICollection{``0},System.Func{``0,System.String},System.Func{``0,System.Object})">
            <summary>
            Appends the key expression for an entity to the given <see cref="T:System.Text.StringBuilder"/>
            </summary>
            <param name="builder">The builder to append onto.</param>
            <typeparam name="TProperty">The type used to represent properties.</typeparam>
            <param name="keyProperties">The key properties.</param>
            <param name="getPropertyName">The callback to get each property's name.</param>
            <param name="getPropertyValue">The callback to get each property's value.</param>
        </member>
        <member name="T:System.Data.Services.Client.KeySerializer.SegmentKeySerializer">
            <summary>
            Implementation of the key serializer which uses segments (e.g. Customers/1).
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.SegmentKeySerializer.#ctor">
            <summary>
            Creates a new instance of <see cref="T:System.Data.Services.Client.KeySerializer.SegmentKeySerializer"/>.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.SegmentKeySerializer.AppendKeyExpression``1(System.Text.StringBuilder,System.Collections.Generic.ICollection{``0},System.Func{``0,System.String},System.Func{``0,System.Object})">
            <summary>
            Appends the key expression for an entity to the given <see cref="T:System.Text.StringBuilder"/>
            </summary>
            <param name="builder">The builder to append onto.</param>
            <typeparam name="TProperty">The type used to represent properties.</typeparam>
            <param name="keyProperties">The key properties.</param>
            <param name="getPropertyName">The callback to get each property's name.</param>
            <param name="getPropertyValue">The callback to get each property's value.</param>
        </member>
        <member name="M:System.Data.Services.Client.KeySerializer.SegmentKeySerializer.AppendKeyWithSegments``1(System.Text.StringBuilder,System.Collections.Generic.ICollection{``0},System.Func{``0,System.Object})">
            <summary>
            Appends the key for the current resource using segment-based syntax (e.g. Customers/1) onto the given <see cref="T:System.Text.StringBuilder"/>.
            </summary>
            <param name="builder">The builder to append onto.</param>
            <typeparam name="TProperty">The type used to represent properties.</typeparam>
            <param name="keyProperties">The key properties.</param>
            <param name="getPropertyValue">The callback to get each property's value.</param>
        </member>
        <member name="T:System.Data.Services.Client.UrlConvention">
            <summary>
            Component for representing the url convention in use by the server, client, or codegen.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UrlConvention.ConventionTermNamespace">
            <summary>
            The namespace of the term to use when building value annotations for indicating the conventions used.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UrlConvention.ConventionTermName">
            <summary>
            The name of the term to use when building value annotations for indicating the conventions used.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UrlConvention.KeyAsSegmentConventionName">
            <summary>
            The string value for indicating that the key-as-segment convention is being used in annotations and headers.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UrlConvention.UrlConventionHeaderName">
            <summary>
            The name of the request header for indicating what conventions are being used.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UrlConvention.generateKeyAsSegment">
            <summary>
            Whether to generate entity keys as '/'-delimited segments instead of using parenthesis.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UrlConvention.#ctor(System.Boolean)">
            <summary>
            Prevents a default instance of the <see cref="T:System.Data.Services.Client.UrlConvention"/> class from being created.
            </summary>
            <param name="generateKeyAsSegment">Whether keys should be generated as segments.</param>
        </member>
        <member name="M:System.Data.Services.Client.UrlConvention.CreateWithExplicitValue(System.Boolean)">
            <summary>
            Helper for creating an instance with explicit value. Should only be called from unit tests.
            </summary>
            <param name="generateKeyAsSegment">Whether keys should be generated as segments.</param>
            <returns>A new UrlConvention instance with the given value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UrlConvention.AddRequiredHeaders(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Adds the required headers for the url convention.
            </summary>
            <param name="requestHeaders">The request headers to add to.</param>
        </member>
        <member name="P:System.Data.Services.Client.UrlConvention.GenerateKeyAsSegment">
            <summary>
            Whether to generate entity keys as '/'-delimited segments instead of using parenthesis.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.XmlConstants">
            <summary>
            Class that contains all the constants for various schemas.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ClrServiceInitializationMethodName">
            <summary>"InitializeService" method name for service initialize.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpContentID">
            <summary>id of the corresponding body</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpContentLength">
            <summary>byte-length of the corresponding body</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpContentType">
            <summary>mime-type of the corresponding body</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpContentDisposition">
            <summary>content disposition of the response (a hint how to handle the response)</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpDataServiceVersion">
            <summary>'DataServiceVersion' - HTTP header name for data service version.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMaxDataServiceVersion">
            <summary>'MaxDataServiceVersion' - HTTP header name for maximum understood data service version.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpPrefer">
            <summary>
            'Prefer' - HTTP request header name for client preferences.
            Refer to: http://tools.ietf.org/id/draft-snell-http-prefer-02.txt for details.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpPreferReturnNoContent">
            <summary>Return no content Prefer header hint value.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpPreferReturnContent">
            <summary>Return content Prefer header hint value.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpCacheControlNoCache">
            <summary>'no-cache' - HTTP value for Cache-Control header.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpCharsetParameter">
            <summary>'charset' - HTTP parameter name.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMethodGet">
            <summary>HTTP method name for GET requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMethodPost">
            <summary>HTTP method name for POST requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMethodPut">
            <summary> Http Put Method name - basically used for updating resource.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMethodDelete">
            <summary>HTTP method name for delete requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMethodMerge">
            <summary>HTTP method name for MERGE requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMethodPatch">
            <summary>HTTP method name for PATCH requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringExpand">
            <summary>HTTP query string parameter value for expand.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringFilter">
            <summary>HTTP query string parameter value for filtering.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringOrderBy">
            <summary>HTTP query string parameter value for ordering.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringSkip">
            <summary>HTTP query string parameter value for skipping elements.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringTop">
            <summary>HTTP query string parameter value for limiting the number of elements.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringInlineCount">
            <summary>HTTP query string parameter value for counting query result set</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringSkipToken">
            <summary>HTTP query string parameter value for skipping results based on paging.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SkipTokenPropertyPrefix">
            <summary>Property prefix for the skip token property in expanded results for a skip token</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringValueCount">
            <summary>HTTP query string parameter value for counting query result set</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringSelect">
            <summary>HTTP query string parameter value for projection.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringFormat">
            <summary>HTTP query string parameter for specifying the requested content-type of the response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQueryStringCallback">
            <summary>HTTP query string parameter for specifying the a callback function name for JSONP (JSON padding).</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpQValueParameter">
            <summary>'q' - HTTP q-value parameter name.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpXMethod">
            <summary>'X-HTTP-Method' - HTTP header name for requests that want to tunnel a method through POST.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpRequestAccept">
            <summary>HTTP name for Accept header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpRequestAcceptCharset">
            <summary>HTTP name for Accept-Charset header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpRequestIfMatch">
            <summary>HTTP name for If-Match header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpRequestIfNoneMatch">
            <summary>HTTP name for If-None-Match header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpUserAgent">
            <summary>HTTP name for User-Agent header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMultipartBoundary">
            <summary>multi-part keyword in content-type to identify batch separator</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XContentTypeOptions">
            <summary>'X-Content-Type-Options' - HTTP header for Internet Explorer 8 and 9 to specify options for content-type handling.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XContentTypeOptionNoSniff">
            <summary>An 'X-Content-Type-Options' HTTP header argument to instruct IE8/9 not to sniff the content and instead display it according to the content-type header.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMultipartBoundaryBatch">
            <summary>multi-part mixed batch separator</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMultipartBoundaryChangeSet">
            <summary>multi-part mixed changeset separator</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpResponseAllow">
            <summary>'Allow' - HTTP response header for allowed verbs.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpResponseCacheControl">
            <summary>HTTP name for Cache-Control header.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpResponseETag">
            <summary>HTTP name for ETag header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpResponseLocation">
            <summary>HTTP name for location header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpDataServiceId">
            <summary>HTTP name for DataServiceId header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpResponseStatusCode">
            <summary>HTTP name for Status-Code header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMultipartBoundaryBatchResponse">
            <summary>multi-part mixed batch separator for response stream</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpMultipartBoundaryChangesetResponse">
            <summary>multi-part mixed changeset separator</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpContentTransferEncoding">
            <summary>Content-Transfer-Encoding header for batch requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpVersionInBatching">
            <summary>Http Version in batching requests and response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpAnyETag">
            <summary>To checks if the resource exists or not.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpWeakETagPrefix">
            <summary>Weak etags in HTTP must start with W/.
            Look in http://www.ietf.org/rfc/rfc2616.txt?number=2616 section 14.19 for more information.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpAccept">
            <summary>The mime type that client wants the response to be in.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpAcceptCharset">
            <summary>The character set the client wants the response to be in.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpCookie">
            <summary>The name of the Cookie HTTP header</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.HttpSlug">
            <summary>The Slug header name. Used by ATOM to hint the server on which MR is being POSTed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeAny">
            <summary>MIME type for requesting any media type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeApplicationOctetStream">
            <summary>MIME type general binary bodies (http://www.iana.org/assignments/media-types/application/).</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeApplicationType">
            <summary>'application' - MIME type for application types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeJsonSubType">
            <summary>'json' - constant for MIME JSON subtypes.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeXmlSubType">
            <summary>'xml' - constant for MIME xml subtypes.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeODataParameterName">
            <summary>'odata' - parameter name for JSON MIME types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeMultiPartMixed">
            <summary>MIME type for changeset multipart/mixed</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeTextPlain">
            <summary>MIME type for plain text bodies.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeTextType">
            <summary>'text' - MIME type for text subtypes.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeTextXml">
            <summary>MIME type for XML bodies (deprecated).</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.BatchRequestContentTransferEncoding">
            <summary>Content-Transfer-Encoding value for batch requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MimeTypeUtf8Encoding">
            <summary>Default encoding used for writing textual media link entries</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriHttpAbsolutePrefix">
            <summary>A prefix that turns an absolute-path URI into an absolute-URI.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriMetadataSegment">
            <summary>A segment name in a URI that indicates metadata is being requested.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriValueSegment">
            <summary>A segment name in a URI that indicates a plain primitive value is being requested.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriBatchSegment">
            <summary>A segment name in a URI that indicates metadata is being requested.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriLinkSegment">
            <summary>A segment name in a URI that indicates that this is a link operation.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriCountSegment">
            <summary>A segment name in a URI that indicates that this is a count operation.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriRowCountAllOption">
            <summary>A const value for the query parameter $inlinecount to set counting mode to inline</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriRowCountOffOption">
            <summary>A const value for the query parameter $inlinecount to set counting mode to none</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AnyMethodName">
            <summary>Uri method name for Enumerable.Any().</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AllMethodName">
            <summary>Uri method name for Enumerable.All().</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ImplicitFilterParameter">
            <summary>Implicit parameter "it" used for Queryable.Where lambda.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.WcfBinaryElementName">
            <summary>"Binary" - WCF element name for binary content in XML-wrapping streams.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomNamespacePrefix">
            <summary> Schema Namespace prefix for atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomContentElementName">
            <summary>XML element name to mark content element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomEntryElementName">
            <summary>XML element name to mark entry element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomFeedElementName">
            <summary>XML element name to mark feed element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomAuthorElementName">
            <summary>'author' - XML element name for ATOM 'author' element for entries.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomContributorElementName">
            <summary>'contributor' - XML element name for ATOM 'author' element for entries.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomCategoryElementName">
            <summary>'category' - XML element name for ATOM 'category' element for entries.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomLinkElementName">
            <summary>XML element name to mark link element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomCategorySchemeAttributeName">
            <summary>'scheme' - XML attribute name for ATOM 'scheme' attribute for categories.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomCategoryTermAttributeName">
            <summary>'term' - XML attribute name for ATOM 'term' attribute for categories.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomIdElementName">
            <summary>XML element name to mark id element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomLinkRelationAttributeName">
            <summary>XML element name to mark link relation attribute in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomContentSrcAttributeName">
            <summary>Atom attribute that indicates the actual location for an entry's content.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomLinkNextAttributeString">
            <summary>XML element string for "next" links: [atom:link rel="next"]</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MetadataAttributeEpmContentKind">
            <summary>Type of content for syndication property which can be one of Plaintext, Html or XHtml</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MetadataAttributeEpmKeepInContent">
            <summary>Whether to keep the property value in the content section</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MetadataAttributeEpmNsPrefix">
            <summary>TargetNamespace prefix for non-syndication mapping</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MetadataAttributeEpmNsUri">
            <summary>TargetNamespace URI for non-syndication mapping</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MetadataAttributeEpmTargetPath">
            <summary>Target element or attribute name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MetadataAttributeEpmSourcePath">
            <summary>Source property name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndAuthorEmail">
            <summary>author/email</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndAuthorName">
            <summary>author/name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndAuthorUri">
            <summary>author/uri</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndPublished">
            <summary>published</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndRights">
            <summary>rights</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndSummary">
            <summary>summary</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndTitle">
            <summary>title</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomUpdatedElementName">
            <summary>'updated' - XML element name for ATOM 'updated' element for entries.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndContributorEmail">
            <summary>contributor/email</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndContributorName">
            <summary>contributor/name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndContributorUri">
            <summary>contributor/uri</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndUpdated">
            <summary>updated</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndContentKindPlaintext">
            <summary>Plaintext</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndContentKindHtml">
            <summary>HTML</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.SyndContentKindXHtml">
            <summary>XHTML</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomHRefAttributeName">
            <summary>XML element name to mark href attribute element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomHRefLangAttributeName">
            <summary>XML attribute name to mark the hreflang attribute in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomSummaryElementName">
            <summary>XML element name to mark summary element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomNameElementName">
            <summary>XML element name to mark author/name or contributor/name element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomEmailElementName">
            <summary>XML element name to mark author/email or contributor/email element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomUriElementName">
            <summary>XML element name to mark author/uri or contributor/uri element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomPublishedElementName">
            <summary>XML element name to mark published element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomRightsElementName">
            <summary>XML element name to mark rights element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomPublishingCollectionElementName">
            <summary>XML element name to mark 'collection' element in APP.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomPublishingServiceElementName">
            <summary>XML element name to mark 'service' element in APP.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomPublishingWorkspaceDefaultValue">
            <summary>XML value for a default workspace in APP.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomPublishingWorkspaceElementName">
            <summary>XML element name to mark 'workspace' element in APP.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomTitleElementName">
            <summary>XML element name to mark title element in Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomTypeAttributeName">
            <summary>XML attribute name to specify the type of the element.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomSelfRelationAttributeValue">
            <summary> Atom link relation attribute value for self links.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomEditRelationAttributeValue">
            <summary> Atom link relation attribute value for edit links.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomEditMediaRelationAttributeValue">
            <summary> Atom link relation attribute value for edit-media links.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomAlternateRelationAttributeValue">
            <summary>Link relation: alternate - refers to a substitute for this context.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomRelatedRelationAttributeValue">
            <summary>Link relation: related - identifies a related resource.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomEnclosureRelationAttributeValue">
            <summary>Link relation: enclosure - identifies a related resource that is potentially large and might require special handling.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomViaRelationAttributeValue">
            <summary>Link relation: via - identifies a resource that is the source of the information in the link's context.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomDescribedByRelationAttributeValue">
            <summary>Link relation: describedby - refers to a resource providing information about the link's context.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomServiceRelationAttributeValue">
            <summary>Link relation: service - indicates a URI that can be used to retrieve a service document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomNullAttributeName">
            <summary> Atom attribute which indicates the null value for the element.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomETagAttributeName">
            <summary> Atom attribute which indicates the etag value for the declaring entry element.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomInlineElementName">
            <summary>'Inline' - wrapping element for inlined entry/feed content.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomPropertiesElementName">
            <summary>Element containing property values when 'content' is used for media link entries</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.RowCountElement">
            <summary>'count' element</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlCollectionItemElementName">
            <summary>'element', the XML element name for items in enumerations.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlErrorElementName">
            <summary>XML element name for an error.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlErrorCodeElementName">
            <summary>XML element name for an error code.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlErrorInnerElementName">
            <summary>XML element name for the inner error details.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlErrorInternalExceptionElementName">
            <summary>XML element name for an internal exception.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlErrorTypeElementName">
            <summary>XML element name for an exception type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlErrorStackTraceElementName">
            <summary>XML element name for an exception stack trace.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlErrorMessageElementName">
            <summary>XML element name for an error message.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlFalseLiteral">
            <summary>'false' literal, as used in XML.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlTrueLiteral">
            <summary>'true' literal, as used in XML.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlBaseAttributeName">
            <summary>XML attribute value to indicate the base URI for a document or element.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlLangAttributeName">
            <summary>'lang' XML attribute name for annotation language.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlSpaceAttributeName">
            <summary>XML attribute name for whitespace parsing control.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlSpacePreserveValue">
            <summary>XML attribute value to indicate whitespace should be preserved.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlBaseAttributeNameWithPrefix">
            <summary>XML attribute name to pass to the XMLReader.GetValue API to get the xml:base attribute value.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmV1Namespace">
            <summary> Schema Namespace For Edm.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmV1dot1Namespace">
            <summary> Schema Namespace For Edm 1.1.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmV1dot2Namespace">
            <summary> Schema Namespace For Edm 1.2.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmAnnotationsNamespace">
            <summary>XML namespace for annotations in EDM such as 'StoreGeneratedPattern' </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebNamespace">
            <summary>XML namespace for data services.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebMetadataNamespace">
            <summary>XML namespace for data service annotations.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebRelatedNamespace">
            <summary>XML namespace for data service links.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebRelatedLinkNamespace">
            <summary>XML namespace for data service related $links.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebMediaResourceNamespace">
            <summary>XML namespace for data service named media resources.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebMediaResourceEditNamespace">
            <summary>XML namespace for data service edit-media link for named media resources.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebSchemeNamespace">
            <summary>ATOM Scheme Namespace For DataWeb.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AppNamespace">
            <summary>Schema Namespace for Atom Publishing Protocol.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AtomNamespace">
            <summary> Schema Namespace For Atom.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlnsNamespacePrefix">
            <summary> Schema Namespace prefix For xmlns.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlNamespacePrefix">
            <summary> Schema Namespace prefix For xml.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebNamespacePrefix">
            <summary> Schema Namespace Prefix For DataWeb.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebMetadataNamespacePrefix">
            <summary>'adsm' - namespace prefix for DataWebMetadataNamespace.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.XmlNamespacesNamespace">
            <summary>'http://www.w3.org/2000/xmlns/' - namespace for namespace declarations.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmxNamespace">
            <summary> Edmx namespace in metadata document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmxNamespacePrefix">
            <summary> Prefix for Edmx Namespace in metadata document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.IanaLinkRelationsNamespace">
            <summary>IANA link relations namespace.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EmptyNamespace">
            <summary>The empty namespace.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Association">
            <summary> Association Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.AssociationSet">
            <summary> AssociationSet Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ComplexType">
            <summary> ComplexType Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Dependent">
            <summary> Dependent Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmCollectionTypeName">
            <summary>The name of the EDM collection type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ActualEdmType">
            <summary>
            Attribute name used to indicate the real type of an EDM property or parameter, in cases where it needs to be different
            from the Type attribute of the Property or Parameter element. This is used to support collection types and binary keys,
            which are incompatible with EDM 1.1, which we are currently using for validation purposes.
            This attribute is inserted into the CSDL in memory while codegen is processing properties that require special
            type handling and should only be used in that scenario. This is not a real EDM or Data Services attribute.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmTypeRefElementName">
            <summary>TypeRef element name in CSDL document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmEntitySetAttributeName">
            <summary>EntitySet attribute name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmEntitySetPathAttributeName">
            <summary>EntitySetPath attribute name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmBindableAttributeName">
            <summary>ExtensionMethod attribute name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmComposableAttributeName">
            <summary>Composable attribute name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmSideEffectingAttributeName">
            <summary>SideEffecting attribute name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmFunctionImportElementName">
            <summary>FunctionImport element name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmModeAttributeName">
            <summary>Mode attribute name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmModeInValue">
            <summary>Mode attribute value for 'in' direction in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmParameterElementName">
            <summary>Parameter element name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmReturnTypeAttributeName">
            <summary>ReturnType attribute name in CSDL documents.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ActualReturnTypeAttributeName">
            <summary>
            Attribute name used to indicate the real type of an EDM function import return type, in cases where it needs to be different
            from the ReturnType attribute of the function import element. This is used to support special primitive types,
            which are incompatible with EDM 1.1, which we are currently using for validation purposes.
            This attribute is inserted into the CSDL in memory while codegen is processing function imports that require special
            type handling and should only be used in that scenario. This is not a real EDM or Data Services attribute.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.End">
            <summary> End Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EntityType">
            <summary> EntityType Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EntityContainer">
            <summary> EntityContainer Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Key">
            <summary> Key Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.NavigationProperty">
            <summary> NavigationProperty Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.OnDelete">
            <summary> OnDelete Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Principal">
            <summary> Principal Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Property">
            <summary> Property Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.PropertyRef">
            <summary> PropetyRef Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ReferentialConstraint">
            <summary> ReferentialConstraint Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Role">
            <summary> Role Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Schema">
            <summary> Schema Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmxElement">
            <summary> Edmx Element Name in the metadata document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmxDataServicesElement">
            <summary> Edmx DataServices Element Name in the metadata document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmxVersion">
            <summary>Version attribute for the root Edmx Element in the metadata document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmxVersionValue">
            <summary>Value of the version attribute in the root edmx element in metadata document.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ActionElementName">
            <summary>Element name for m:action.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.FunctionElementName">
            <summary>Element name for m:function</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ActionMetadataAttributeName">
            <summary>maps to m:action|m:function\@metadata</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ActionTargetAttributeName">
            <summary>maps to m:action|m:function\@target</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ActionTitleAttributeName">
            <summary>maps to m:action|m:function\@title</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.BaseType">
            <summary> BaseType attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EntitySet">
            <summary> EntitySet attribute and Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EntitySetPath">
            <summary> EntitySetPath attribute and Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.FromRole">
            <summary> FromRole attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Abstract">
            <summary>Abstract attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Multiplicity">
            <summary>Multiplicity attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Name">
            <summary>Name attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Namespace">
            <summary>Namespace attribute Element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ToRole">
            <summary>ToRole attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Type">
            <summary>Type attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Relationship">
            <summary>Relationship attribute Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Using">
            <summary>Using element Name in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.Many">
            <summary>Value for Many multiplicity in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.One">
            <summary>Value for One multiplicity in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ZeroOrOne">
            <summary>Value for ZeroOrOne multiplicity in csdl.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlNullableAttributeName">
            <summary>Nullable facet name in CSDL.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlPrecisionAttributeName">
            <summary>The attribute name of the 'Precision' facet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlScaleAttributeName">
            <summary>The attribute name of the 'Scale' facet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlMaxLengthAttributeName">
            <summary>The attribute name of the 'MaxLength' facet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlFixedLengthAttributeName">
            <summary>The attribute name of the 'FixedLength' facet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlUnicodeAttributeName">
            <summary>The attribute name of the 'Unicode' facet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlCollationAttributeName">
            <summary>The attribute name of the 'Collation' facet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlSridAttributeName">
            <summary>The attribute name of the 'SRID' facet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlConcurrencyAttributeName">
            <summary>Name of the concurrency attribute.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlDefaultValueAttributeName">
            <summary>Name of the default value attribute.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlMaxLengthAttributeMaxValue">
            <summary>The special value for the 'MaxLength' facet to indicate that it has the max length.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlStoreGeneratedPattern">
            <summary>The attribute name of the 'StoreGeneratedPattern' annotation</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlStoreGeneratedPatternComputed">
            <summary>The 'Computed' value for the 'StoreGeneratedPattern' annotation</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CsdlStoreGeneratedPatternIdentity">
            <summary>The 'Identity' value for the 'StoreGeneratedPattern' annotation</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebMimeTypeAttributeName">
            <summary>'MimeType' - attribute name for property MIME type attributes.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebOpenTypeAttributeName">
            <summary>'OpenType' - attribute name to indicate a type is an OpenType property.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebAccessHasStreamAttribute">
            <summary>'HasStream' - attribute name to indicate a type has a default stream property.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataWebAccessDefaultStreamPropertyValue">
            <summary>'true' - attribute value to indicate a type has a default stream property.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.IsDefaultEntityContainerAttribute">
            <summary>Attribute to indicate whether this is a default entity container or not.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.ServiceOperationHttpMethodName">
            <summary>Attribute name in the csdl to indicate whether the service operation must be called using POST or GET verb.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.UriElementName">
            <summary>uri element name for link bind/unbind operations</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.NextElementName">
            <summary>next element name for link paging</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LinkCollectionElementName">
            <summary>XML element name for writing out collection of links.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonError">
            <summary>JSON property name for an error.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonErrorCode">
            <summary>JSON property name for an error code.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonErrorInner">
            <summary>JSON property name for the inner error details.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonErrorInternalException">
            <summary>JSON property name for an internal exception.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonErrorMessage">
            <summary>JSON property name for an error message.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonErrorStackTrace">
            <summary>JSON property name for an exception stack trace.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonErrorType">
            <summary>JSON property name for an exception type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.JsonErrorValue">
            <summary>JSON property name for an error message value.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmNamespace">
            <summary>namespace for edm primitive types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmBinaryTypeName">
            <summary>edm binary primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmBooleanTypeName">
            <summary>edm boolean primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmByteTypeName">
            <summary>edm byte primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmDateTimeTypeName">
            <summary>edm datetime primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmDecimalTypeName">
            <summary>edm decimal primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmDoubleTypeName">
            <summary>edm double primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGuidTypeName">
            <summary>edm guid primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmSingleTypeName">
            <summary>edm single primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmSByteTypeName">
            <summary>edm sbyte primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmInt16TypeName">
            <summary>edm int16 primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmInt32TypeName">
            <summary>edm int32 primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmInt64TypeName">
            <summary>edm int64 primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmStringTypeName">
            <summary>edm string primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmStreamTypeName">
            <summary>edm stream primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.CollectionTypeQualifier">
            <summary>edm string indicating that the value may be collection.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeographyTypeName">
            <summary>Edm Geography type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmPointTypeName">
            <summary>Edm Geodetic point type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmLineStringTypeName">
            <summary>Edm Geodetic linestring type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmPolygonTypeName">
            <summary>Represents a geography Polygon type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeographyCollectionTypeName">
            <summary>Represents a geography GeomCollection type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmMultiPolygonTypeName">
            <summary>Represents a geography MultiPolygon type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmMultiLineStringTypeName">
            <summary>Represents a geography MultiLineString type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmMultiPointTypeName">
            <summary>Represents a geography MultiPoint type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryTypeName">
            <summary>Represents an arbitrary Geometry type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryPointTypeName">
            <summary>Represents a geometry Point type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryLineStringTypeName">
            <summary>Represents a geometry LineString type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryPolygonTypeName">
            <summary>Represents a geometry Polygon type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryCollectionTypeName">
            <summary>Represents a geometry GeomCollection type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryMultiPolygonTypeName">
            <summary>Represents a geometry MultiPolygon type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryMultiLineStringTypeName">
            <summary>Represents a geometry MultiLineString type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmGeometryMultiPointTypeName">
            <summary>Represents a geometry MultiPoint type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmTimeTypeName">
            <summary>edm string primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.EdmDateTimeOffsetTypeName">
            <summary>edm string primitive type name</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataServiceVersion1Dot0">
            <summary>'1.0' - the version 1.0 text for a data service.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataServiceVersion2Dot0">
            <summary>'2.0' - the version 2.0 text for a data service.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataServiceVersion3Dot0">
            <summary>'3.0' - the version 3.0 text for a data service.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataServiceVersionCurrent">
            <summary>'2.0;' - the text for the current server version text.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataServiceVersionCurrentMajor">
            <summary>1 - the version 1 text for a data service.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.DataServiceVersionCurrentMinor">
            <summary>0 - the current minor version for a data service.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixBinary">
            <summary>'binary' constant prefixed to binary literals.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixDateTime">
            <summary>'datetime' constant prefixed to datetime literals.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixGuid">
            <summary>'guid' constant prefixed to guid literals.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixGeography">
            <summary>'geography' constant prefixed to geography literals.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixGeometry">
            <summary>'geometry' constant prefixed to geometry literals.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixDateTimeOffset">
            <summary>'guid' constant prefixed to guid literals.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixTime">
            <summary>'guid' constant prefixed to guid literals.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralPrefixShortBinary">
            <summary>'X': Prefix to binary type string representation.</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralSuffixDecimal">
            <summary>'M': Suffix for decimal type's string representation</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralSuffixInt64">
            <summary>'L': Suffix for long (int64) type's string representation</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralSuffixSingle">
            <summary>'f': Suffix for float (single) type's string representation</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.LiteralSuffixDouble">
            <summary>'D': Suffix for double (Real) type's string representation</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.NullLiteralInETag">
            <summary>null liternal that needs to be return in ETag value when the value is null</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MicrosoftDataServicesRequestUri">
            <summary>Incoming message property name for the original reqeust uri</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.MicrosoftDataServicesRootUri">
            <summary>Incoming message property name for the original root service uri</summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GeoRssNamespace">
            <summary>
            GeoRss namespace
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GeoRssPrefix">
            <summary>
            The "georss" prefix
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GmlNamespace">
            <summary>
            Gml Namespace
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GmlPrefix">
            <summary>
            Gml Prefix
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GeoRssWhere">
            <summary>
            Embedded Gml tag inside Georss
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GeoRssPoint">
            <summary>
            GeoRss representation of a point
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GeoRssLine">
            <summary>
            GeoRss representation of a line
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GmlPosition">
            <summary>
            Gml representation of a point
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GmlPositionList">
            <summary>
            Gml representation of a point array
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.XmlConstants.GmlLineString">
            <summary>
            Gml representation of a linestring
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Serializers.EpmSourceTree">
            <summary>
            Tree representing the sourceName properties in all the EntityPropertyMappingAttributes for a resource type
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmSourceTree.root">
            <summary>Root of the tree</summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmSourceTree.epmTargetTree">
            <summary><see cref="T:System.Data.Services.Client.Serializers.EpmTargetTree"/> corresponding to this tree</summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmSourceTree.#ctor(System.Data.Services.Client.Serializers.EpmTargetTree)">
            <summary>Default constructor creates a null root</summary>
            <param name="epmTargetTree">Target xml tree</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmSourceTree.Add(System.Data.Services.Client.Serializers.EntityPropertyMappingInfo)">
            <summary>
            Adds a path to the source and target tree which is obtained by looking at the EntityPropertyMappingAttribute in the <paramref name="epmInfo"/>
            </summary>
            <param name="epmInfo">EnitityPropertyMappingInfo holding the source path</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmSourceTree.Validate(System.Data.Services.Client.Metadata.ClientTypeAnnotation)">
            <summary>Validates the source tree.</summary>
            <param name="resourceType">The resource type for which the validation is performed.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmSourceTree.Validate(System.Data.Services.Client.Serializers.EpmSourcePathSegment,System.Data.Services.Client.Metadata.ClientTypeAnnotation)">
            <summary>Validates the specified segment and all its subsegments.</summary>
            <param name="pathSegment">The path segment to validate.</param>
            <param name="resourceType">The resource type of the property represented by this segment (null for open properties).</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmSourceTree.GetPropertyType(System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.String)">
            <summary>
            Returns a client type of the property on the specified resource type.
            </summary>
            <param name="clientType">The client type to look for the property on.</param>
            <param name="propertyName">The name of the property to look for.</param>
            <returns>The type of the property specified. Note that for collection properties this returns the type of the item of the collection property.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmSourceTree.Root">
            <summary>
            Root of the tree
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Serializers.EpmSourcePathSegment">
            <summary>
            Representation of each node in the <see cref="T:System.Data.Services.Client.Serializers.EpmSourceTree"/>
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmSourcePathSegment.propertyName">
            <summary>Name of the property under the parent resource type</summary>
            <remarks>This fields is used to diferentiate between some special node types as well.
            - null - this is the root node of the source tree.
            - "" (empty string) - this is a node representing a value of a primitive item in a collection property.
            - anything else - this is a node representing a property with the name of this field.</remarks>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmSourcePathSegment.subProperties">
            <summary>List of sub-properties if this segment corresponds to a complex type</summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmSourcePathSegment.#ctor">
            <summary>
            Constructor creates a root source path segment
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmSourcePathSegment.#ctor(System.String)">
            <summary>
            Constructor creates a source path segment with the name set to <paramref name="propertyName"/>
            </summary>
            <param name="propertyName">Segment property name</param>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmSourcePathSegment.PropertyName">
            <summary>Name of the property under the parent resource type</summary>
            <remarks>This property is used to diferentiate between some special node types as well.
            - null - this is the root node of the source tree.
            - "" (empty string) - this is a node representing a value of a primitive item in a collection property.
            - anything else - this is a node representing a property with the name of this property.
            These values should not be compared directly, instead use the IsCollectionItemValue property to differentiate between the last two.
            The root node itself should never be accessed directly so far.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmSourcePathSegment.SubProperties">
            <summary>List of sub-properties if this segment corresponds to a complex type</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmSourcePathSegment.EpmInfo">
            <summary>Corresponding EntityPropertyMappingInfo</summary>
        </member>
        <member name="T:System.Data.Services.Client.Serializers.EpmTargetTree">
            <summary>
            Tree representing the targetName properties in all the EntityPropertyMappingAttributes for a resource type
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmTargetTree.countOfNonContentV2mappings">
            <summary>Number of properties that have V2 mapping with KeepInContent false</summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetTree.#ctor">
            <summary>Initializes the sub-trees for syndication and non-syndication content</summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetTree.Add(System.Data.Services.Client.Serializers.EntityPropertyMappingInfo)">
            <summary>
            Adds a path to the tree which is obtained by looking at the EntityPropertyMappingAttribute in the <paramref name="epmInfo"/>
            </summary>
            <param name="epmInfo">EnitityPropertyMappingInfo holding the target path</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetTree.Remove(System.Data.Services.Client.Serializers.EntityPropertyMappingInfo)">
            <summary>
            Removes a path in the tree which is obtained by looking at the EntityPropertyMappingAttribute in the <paramref name="epmInfo"/>
            </summary>
            <param name="epmInfo">EnitityPropertyMappingInfo holding the target path</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetTree.Validate">
            <summary>Validates the target tree.</summary>
            <remarks>This also cleans up the tree if necessary.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetTree.HasMixedContent(System.Data.Services.Client.Serializers.EpmTargetPathSegment,System.Boolean)">
            <summary>Checks if mappings could potentially result in mixed content and dis-allows it.</summary>
            <param name="currentSegment">Segment being processed.</param>
            <param name="ancestorHasContent">Does any of the ancestors have content.</param>
            <returns>boolean indicating if the tree is valid or not.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetTree.GetPropertyNameFromEpmInfo(System.Data.Services.Client.Serializers.EntityPropertyMappingInfo)">
            <summary>
            Given an <see cref="T:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo"/> gives the correct target path for it
            </summary>
            <param name="epmInfo">Given <see cref="T:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo"/></param>
            <returns>String with the correct value for the target path</returns>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetTree.SyndicationRoot">
            <summary>Root of the sub-tree for syndication content</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetTree.NonSyndicationRoot">
            <summary>Root of the sub-tree for custom content</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetTree.MinimumDataServiceProtocolVersion">
            <summary>
            Minimum DSPV required to serialize this target tree.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Serializers.EpmTargetPathSegment">
            <summary>
            Representation of each node in the <see cref="T:System.Data.Services.Client.Serializers.EpmTargetTree"/>
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmTargetPathSegment.segmentName">
            <summary>Name of the xml element/attribute</summary>
            <remarks>This field is used to differentiate between special nodes as well.
            - null - this is the root of the target tree.
            - anything else (doesn't start with @) - this node represents an element with the specified name.
            - anything else (starts with @) - this node represents an attribute with the specified name.</remarks>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmTargetPathSegment.segmentNamespaceUri">
            <summary>URI of the namespace to which the <see cref="F:System.Data.Services.Client.Serializers.EpmTargetPathSegment.segmentName"/> belongs</summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmTargetPathSegment.subSegments">
            <summary>If this is a non-leaf element, the child elements/attributes collection</summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EpmTargetPathSegment.parentSegment">
            <summary>Parent element of this element/attribute</summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetPathSegment.#ctor">
            <summary>
            Constructor initializes the list of sub-nodes to be empty, used for creating root nodes
            in the <see cref="T:System.Data.Services.Client.Serializers.EpmTargetTree"/>
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EpmTargetPathSegment.#ctor(System.String,System.String,System.Data.Services.Client.Serializers.EpmTargetPathSegment)">
            <summary>Used for creating non-root nodes in the syndication/custom trees</summary>
            <param name="segmentName">Name of xml element/attribute</param>
            <param name="segmentNamespaceUri">URI of the namespace for <paramref name="segmentName"/></param>
            <param name="parentSegment">Reference to the parent node if this is a sub-node, useful for traversals in visitors</param>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetPathSegment.SegmentName">
            <summary>Name of the xml element/attribute</summary>
            <remarks>This property is used to differentiate between special nodes as well.
            - null - this is the root of the target tree.
            - anything else (doesn't start with @) - this node represents an element with the specified name.
            - anything else (starts with @) - this node represents an attribute with the specified name.
            The value of the proeprty should not be compared directly to differentiate between these cases, instead
            properties IsAttribute and IsElementContentSegment should be used. The root not should not be accessed directly
            from anywhere so far.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetPathSegment.SegmentNamespaceUri">
            <summary>URI of the namespace to which the <see cref="F:System.Data.Services.Client.Serializers.EpmTargetPathSegment.segmentName"/> belongs</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetPathSegment.EpmInfo">
            <summary>EntityPropertyMappingInfo corresponding to current segement</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetPathSegment.HasContent">
            <summary>Whether this node corresponds to ResourceType or ClientType property values</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetPathSegment.IsAttribute">
            <summary>Does this node correspond to xml attribute</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetPathSegment.ParentSegment">
            <summary>Parent node in the tree (always an element if present)</summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EpmTargetPathSegment.SubSegments">
            <summary>Sub-nodes of this node. Only exist if current node is an element node</summary>
        </member>
        <member name="T:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo">
            <summary>
            Holds information needed during content serialization/deserialization for
            each EntityPropertyMappingAttribute
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.attribute">
            <summary>
            Private field backing Attribute property.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.definingType">
            <summary>
            Private field backing DefiningType property
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.actualPropertyType">
            <summary>
            Type whose property is to be read. This property is of ClientType type on the client and of ResourceType type on the server.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.propertyValuePath">
            <summary>
            Path to the property value. Stored as an array of property names to access on each other.
            If this mapping is for a non-collection property or for the collection property itself, this path starts at the entity resource.
            If this mapping is for a collection item property, this path starts at the collection item. In this case empty path is allowed, meaning the item itself.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.isSyndicationMapping">
            <summary>
            Set to true if this info describes mapping to a syndication item, or false if it describes a custom mapping
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.#ctor(System.Data.Services.Common.EntityPropertyMappingAttribute,System.Type,System.Data.Services.Client.Metadata.ClientTypeAnnotation)">
            <summary>
            Creates instance of EntityPropertyMappingInfo class.
            </summary>
            <param name="attribute">The <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute"/> corresponding to this object</param>
            <param name="definingType">Type the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute"/> was defined on.</param>
            <param name="actualPropertyType">ClientType whose property is to be read.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.DefiningTypesAreEqual(System.Data.Services.Client.Serializers.EntityPropertyMappingInfo)">
            <summary>Compares the defining type of this info and other EpmInfo object.</summary>
            <param name="other">The other EpmInfo object to compare to.</param>
            <returns>true if the defining types are the same</returns>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.Attribute">
            <summary>
            The <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute"/> corresponding to this object
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.DefiningType">
            <summary>
            Type that has the <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute"/>
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.ActualPropertyType">
            <summary>
            Type whose property is to be read. This property is of ClientType type on the client and of ResourceType type on the server.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.PropertyValuePath">
            <summary>
            Path to the property value. Stored as an array of property names to access on each other.
            If this mapping is for a non-collection property or for the collection property itself, this path starts at the entity resource.
            If this mapping is for a collection item property, this path starts at the collection item. In this case empty path is allowed, meaning the item itself.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Serializers.EntityPropertyMappingInfo.IsSyndicationMapping">
            <summary>
            Set to true if this info describes mapping to a syndication item, or false if it describes a custom mapping
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataStringEscapeBuilder">
            <summary>
            Take a URI string and escape the data portion of it
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataStringEscapeBuilder.SensitiveCharacters">
            <summary>
            Sensitive characters that we should always skip
            This should be the set of Http control characters intersecting with
            the set of characters OData literal format allows outside of strings
            (In V3: only +, as used in double literals ex. 3E+8)
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataStringEscapeBuilder.input">
            <summary>
            input string
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataStringEscapeBuilder.output">
            <summary>
            output string
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataStringEscapeBuilder.index">
            <summary>
            the current index
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataStringEscapeBuilder.quotedDataBuilder">
            <summary>
            current quoted data string
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataStringEscapeBuilder.#ctor(System.String)">
            <summary>
            constructor
            </summary>
            <param name="dataString">The string to be escaped.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataStringEscapeBuilder.EscapeDataString(System.String)">
            <summary>
            Escape a URI string's data string portion
            </summary>
            <param name="input">The input string</param>
            <returns>The escaped string</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataStringEscapeBuilder.Build">
            <summary>
            Build a new escaped string
            </summary>
            <returns>The escaped string</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataStringEscapeBuilder.ReadQuotedString(System.Char)">
            <summary>
            Read quoted string
            </summary>
            <param name="quoteStart">The character that started the quote</param>
        </member>
        <member name="T:Microsoft.Data.OData.Metadata.EdmLibraryExtensions">
            <summary>
            Class with code that will eventually live in EdmLib.
            </summary>
            <remarks>This class should go away completely when the EdmLib integration is fully done.</remarks>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.CollectionTypeQualifier">
            <summary>The qualifier to turn a type name into a Collection type name.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.CollectionTypeFormat">
            <summary>Format string to describe a Collection of a given type.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.PrimitiveTypeReferenceMap">
            <summary>
            Map of CLR primitive type to EDM primitive type reference. Doesn't include spatial types since they need assignability and not equality.
            </summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.BooleanTypeReference">
            <summary>Type reference for Edm.Boolean.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ByteTypeReference">
            <summary>Type reference for Edm.Byte.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.DateTimeTypeReference">
            <summary>Type reference for Edm.DateTime.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.DecimalTypeReference">
            <summary>Type reference for Edm.Decimal.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.DoubleTypeReference">
            <summary>Type reference for Edm.Double.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.Int16TypeReference">
            <summary>Type reference for Edm.Int16.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.Int32TypeReference">
            <summary>Type reference for Edm.Int32.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.Int64TypeReference">
            <summary>Type reference for Edm.Int64.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.SByteTypeReference">
            <summary>Type reference for Edm.SByte.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.StringTypeReference">
            <summary>Type reference for Edm.String.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.SingleTypeReference">
            <summary>Type reference for Edm.Float.</summary>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.#cctor">
            <summary>
            Constructor.
            </summary>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.FullName(Microsoft.Data.Edm.IEdmEntityContainerElement)">
            <summary>
            Returns the fully qualified name of an entity container element.
            </summary>
            <param name="containerElement">The container element to get the full name for.</param>
            <returns>The full name of the owning entity container, slash, name of the container element.</returns>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ToTypeReference(Microsoft.Data.Edm.IEdmType,System.Boolean)">
            <summary>
            Turns a <see cref="T:Microsoft.Data.Edm.IEdmType"/> into the corresponding <see cref="T:Microsoft.Data.Edm.IEdmTypeReference"/>.
            </summary>
            <param name="type">The type to convert.</param>
            <param name="nullable">true if the returned type reference should be nullable; otherwise false.</param>
            <returns>A type reference for the <paramref name="type"/>.</returns>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.GetCollectionTypeName(System.String)">
            <summary>
            Creates the EDM type name for a collection of the specified item type name. E.g. Collection(Edm.String)
            </summary>
            <param name="itemTypeName">Type name of the items in the collection.</param>
            <returns>Type name for a collection of the specified item type name.</returns>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ResolveEntitySet(Microsoft.Data.Edm.IEdmModel,System.String)">
            <summary>
            Finds the entity set with the specified container and name.
            </summary>
            <param name="model">The model to find the entity set in.</param>
            <param name="containerQualifiedEntitySetName">The container qualified name of the entity set.</param>
            <returns>The <see cref="T:Microsoft.Data.Edm.IEdmEntitySet"/> with the specified name or null if no such entity set exists.</returns>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ToTypeReference(Microsoft.Data.Edm.IEdmPrimitiveType,System.Boolean)">
            <summary>
            Gets a reference to a primitive kind definition of the appropriate kind.
            </summary>
            <param name="primitiveType">Primitive type to create a reference for.</param>
            <param name="nullable">Flag specifying if the referenced type should be nullable per default.</param>
            <returns>A new primitive type reference.</returns>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.TryGetSingleOrDefaultEntityContainer(Microsoft.Data.Edm.IEdmModel,Microsoft.Data.Edm.IEdmEntityContainer@)">
            <summary>
            Gets the single entity container or the default one if there are multiple containers.
            </summary>
            <param name="model">Model to find entity containers in.</param>
            <param name="foundContainer">Single container that was found.</param>
            <returns>Entity Container found in the model</returns>
        </member>
        <member name="M:Microsoft.Data.OData.Metadata.EdmLibraryExtensions.ResolveContainerQualifiedElementName(Microsoft.Data.Edm.IEdmModel,System.String,System.Func{Microsoft.Data.Edm.IEdmEntityContainer,System.String,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmEntityContainerElement}})">
            <summary>
            Finds the container elements with the specified container and name.
            </summary>
            <param name="model">The model to find the element in.</param>
            <param name="containerQualifiedElementName">The container qualified name of the elements.</param>
            <param name="resolver">The resolver method to resolve the elements.</param>
            <returns>The enumeration of <see cref="T:Microsoft.Data.Edm.IEdmEntityContainerElement"/> with the specified name or null if no such element exists.</returns>
        </member>
        <member name="T:Microsoft.Data.OData.InternalErrorCodesCommon">
            <summary>
            An enumeration that lists the internal errors that are shared between the OData library and the query library.
            </summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_ToTypeReference">
            <summary>Unreachable codepath in EdmLibraryExtensions.ToTypeReference (unsupported type kind).</summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_ToClrType">
            <summary>Unreachable codepath in EdmLibraryExtensions.ToClrType (unsupported type kind).</summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_PrimitiveTypeReference">
            <summary>Unreachable codepath in EdmLibraryExtensions.PrimitiveTypeReference (unsupported primitive type kind).</summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_IsAssignableFrom_Primitive">
            <summary>Unreachable codepath in EdmLibraryExtensions.IsAssignableFrom(IEdmPrimitiveType, IEdmPrimitiveType).</summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_IsAssignableFrom_Type">
            <summary>Unreachable codepath in EdmLibraryExtensions.IsAssignableFrom(IEdmType, IEdmType).</summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_BaseType">
            <summary>Unreachable codepath in EdmLibraryExtensions.BaseType.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_Clone_TypeKind">
            <summary>Unreachable codepath in EdmLibraryExtensions.Clone for unexpected type kind.</summary>
        </member>
        <member name="F:Microsoft.Data.OData.InternalErrorCodesCommon.EdmLibraryExtensions_Clone_PrimitiveTypeKind">
            <summary>Unreachable codepath in EdmLibraryExtensions.Clone for unexpected primitive type kind.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ActionDescriptor">
            <summary> Holds information about a ServiceAction. </summary>
        </member>
        <member name="T:System.Data.Services.Client.OperationDescriptor">
            <summary> Holds information about a service operation. </summary>
        </member>
        <member name="T:System.Data.Services.Client.Descriptor">
            <summary>Abstract class from which <see cref="T:System.Data.Services.Client.EntityDescriptor" /> is derived.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Descriptor.changeOrder">
            <summary>change order</summary>
        </member>
        <member name="F:System.Data.Services.Client.Descriptor.saveContentGenerated">
            <summary>was content generated for the entity</summary>
        </member>
        <member name="F:System.Data.Services.Client.Descriptor.saveResultProcessed">
            <summary>was this entity save result processed</summary>
            <remarks>0 - no processed, otherwise reflects the previous state</remarks>
        </member>
        <member name="F:System.Data.Services.Client.Descriptor.saveError">
            <summary>last save exception per entry</summary>
        </member>
        <member name="F:System.Data.Services.Client.Descriptor.state">
            <summary>State of the modified entity or link.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Descriptor.#ctor(System.Data.Services.Client.EntityStates)">
            <summary>
            constructor
            </summary>
            <param name="state">entity state</param>
        </member>
        <member name="M:System.Data.Services.Client.Descriptor.ClearChanges">
            <summary>
            Clear all the changes associated with this descriptor
            This method is called when the client is done with sending all the pending requests.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Descriptor.State">
            <summary>When overridden in a derived class, gets the state of the object at the time this instance was constructed.</summary>
            <returns>An <see cref="T:System.Data.Services.Client.EntityStates" /> of the object returned at the time this instance was constructed. </returns>
        </member>
        <member name="P:System.Data.Services.Client.Descriptor.DescriptorKind">
            <summary>true if resource, false if link</summary>
        </member>
        <member name="P:System.Data.Services.Client.Descriptor.ChangeOrder">
            <summary>changeOrder</summary>
        </member>
        <member name="P:System.Data.Services.Client.Descriptor.ContentGeneratedForSave">
            <summary>was content generated for the entity</summary>
        </member>
        <member name="P:System.Data.Services.Client.Descriptor.SaveResultWasProcessed">
            <summary>was this entity save result processed</summary>
        </member>
        <member name="P:System.Data.Services.Client.Descriptor.SaveError">
            <summary>last save exception per entry</summary>
        </member>
        <member name="P:System.Data.Services.Client.Descriptor.IsModified">
            <summary>
            Returns true if the entry has been modified (and thus should participate in SaveChanges).
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationDescriptor.title">
            <summary>Maps to m:action\@title. Human-readable description of the service operation.</summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationDescriptor.metadata">
            <summary>maps to m:action\@metadata. Identifies the service operation.</summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationDescriptor.target">
            <summary>maps to m:action\@target. The URI to invoke the service operation.</summary>
        </member>
        <member name="M:System.Data.Services.Client.OperationDescriptor.#ctor">
            <summary>
            Creates a new instance of the Operation descriptor.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.OperationDescriptor.ClearChanges">
            <summary>
            Nothing to clear in case of operation descriptor.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.OperationDescriptor.Title">
            <summary>Human-readable description of the service operation.</summary>
        </member>
        <member name="P:System.Data.Services.Client.OperationDescriptor.Metadata">
            <summary>Identifies the service operation.</summary>
        </member>
        <member name="P:System.Data.Services.Client.OperationDescriptor.Target">
            <summary>The URI to invoke the service operation.</summary>
        </member>
        <member name="P:System.Data.Services.Client.OperationDescriptor.DescriptorKind">
            <summary>
            this is an operation descriptor.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.BaseSaveResult">
            <summary>
            Base class for building the request and handling the response
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.BaseAsyncResult">
            <summary>
            Implementation of IAsyncResult
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.True">
            <summary>
            The int equivalent for true.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.False">
            <summary>
            The int equivalent for false.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.Source">
            <summary>Originating object, used to validate End*</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.Method">
            <summary>Originating method on source, to differentiate between different methods from same source</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.perRequest">
            <summary>wrapped request</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.userCallback">
            <summary>User callback passed to Begin*</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.userState">
            <summary>User state passed to Begin*</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.asyncWait">
            <summary>wait handle for user to wait until done, we only use this within lock of asyncWaitDisposeLock.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.failure">
            <summary>Holding exception to throw as a nested exception during to End*</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.abortable">
            <summary>Abortable request</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.completedSynchronously">
            <summary>true unless something completes asynchronously</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.userCompleted">
            <summary>true when really completed for the user</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.completed">
            <summary>true when no more changes are pending, 0 false, 1 completed, 2 aborted</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.userNotified">
            <summary>verify we only invoke the user callback once, 0 false, 1 true</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.done">
            <summary>non-zero after End*, 0 false, 1, true</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.asyncWaitDisposed">
            <summary>true if the AsyncWaitHandle has already been disposed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.asyncWaitDisposeLock">
            <summary>delay created object to lock to prevent using disposed asyncWait handle.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.#ctor(System.Object,System.String,System.AsyncCallback,System.Object)">
            <summary>
            ctor
            </summary>
            <param name="source">source object of async request</param>
            <param name="method">async method name on source object</param>
            <param name="callback">user callback to invoke when complete</param>
            <param name="state">user state</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.EndExecute``1(System.Object,System.String,System.IAsyncResult)">
            <summary>
            common handler for EndExecuteBatch &amp; EndSaveChanges
            </summary>
            <typeparam name="T">derived type of the AsyncResult</typeparam>
            <param name="source">source object of async request</param>
            <param name="method">async method name on source object</param>
            <param name="asyncResult">the asyncResult being ended</param>
            <returns>data service response for batch</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.InvokeAsync(System.Func{System.AsyncCallback,System.Object,System.IAsyncResult},System.AsyncCallback,System.Object)">
            <summary>
            Due to the unexpected behaviors of IAsyncResult.CompletedSynchronously in the System.Net networking stack, we have to make
            async calls to their APIs using the specific pattern they've prescribed. This method runs in the caller thread and invokes
            the BeginXXX methods. It then checks IAsyncResult.CompletedSynchronously and if it is true, we invoke the callback in the
            caller thread.
            </summary>
            <param name="asyncAction">
            This is the action that invokes the BeginXXX method. Note we MUST use our special callback from GetDataServiceAsyncCallback()
            when invoking the async call.
            </param>
            <param name="callback">async callback to be called when the operation is complete</param>
            <param name="state">A user-provided object that distinguishes this particular asynchronous request from other requests.</param>
            <returns>Returns the async result from the BeginXXX method.</returns>
            <remarks>
            CompletedSynchronously (for System.Net networking stack) means "was the operation completed before the first time
            that somebody asked if it was completed synchronously"? They do this because some of their asynchronous operations
            (particularly those in the Socket class) will avoid the cost of capturing and transferring the ExecutionContext
            to the callback thread by checking CompletedSynchronously, and calling the callback from within BeginXxx instead of
            on the completion port thread if the native winsock call completes quickly.
             
            For other operations however (notably those in HttpWebRequest), they use the same underlying IAsyncResult implementation,
            but do NOT check CompletedSynchronously before returning from BeginXxx. That means that CompletedSynchronously will
            be false if and only if you checked it from the thread which called BeginXxx BEFORE the operation completed. It will
            then continue to be false even after IsCompleted becomes true.
             
            Note that CompletedSynchronously == true does not guarantee anything about how much of your callback has executed.
             
            The usual pattern for handling synchronous completion is that both the caller and callback should check CompletedSynchronously.
            If its true, the callback should do nothing and the caller should call EndRead and process the result.
            This guarantees that the caller and callback are not accessing the stream or buffer concurrently without the need
            for explicit synchronization between the two.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.InvokeAsync(System.Data.Services.Client.BaseAsyncResult.AsyncAction,System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object)">
            <summary>
            Due to the unexpected behaviors of IAsyncResult.CompletedSynchronously in the System.Net networking stack, we have to make
            async calls to their APIs using the specific pattern they've prescribed. This method runs in the caller thread and invokes
            the BeginXXX methods. It then checks IAsyncResult.CompletedSynchronously and if it is true, we invoke the callback in the
            caller thread.
            </summary>
            <param name="asyncAction">
            This is the action that invokes the BeginXXX method. Note we MUST use our special callback from GetDataServiceAsyncCallback()
            when invoking the async call.
            </param>
            <param name="buffer">buffer to transfer the data</param>
            <param name="offset">byte offset in buffer</param>
            <param name="length">max number of bytes in the buffer</param>
            <param name="callback">async callback to be called when the operation is complete</param>
            <param name="state">A user-provided object that distinguishes this particular asynchronous request from other requests.</param>
            <returns>An IAsyncResult that represents the asynchronous operation, which could still be pending</returns>
            <remarks>
            Please see remarks on the other InvokeAsync() overload.
            Also note that the InvokeTask method above is a Win8 version of this method, so it should be kept in sync with any changes that occur here.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.SetCompletedSynchronously(System.Boolean)">
            <summary>
            Sets the CompletedSynchronously property.
            </summary>
            <param name="isCompletedSynchronously">true if the async operation was completed synchronously, false otherwise.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.HandleCompleted">
            <summary>Set the AsyncWait and invoke the user callback.</summary>
            <remarks>
            If the background thread gets a ThreadAbort, the userCallback will never be invoked.
            This is why it's generally important to never wait forever, but to have more specific
            time limit. Also then cancel the operation, to make sure its stopped, to avoid
            multi-threading if your wait time limit was just too short.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.HandleFailure(System.Exception)">
            <summary>Cache the exception that happened on the background thread for the caller of EndSaveChanges.</summary>
            <param name="e">exception object from background thread</param>
            <returns>true if the exception (like StackOverflow or ThreadAbort) should be rethrown</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.SetAborted">
            <summary>Set the async result as completed and aborted.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.SetCompleted">
            <summary>Set the async result as completed.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.EqualRefCheck(System.Data.Services.Client.BaseAsyncResult.PerRequest,System.Data.Services.Client.BaseAsyncResult.PerRequest,System.Data.Services.Client.InternalError)">
            <summary>verify they have the same reference</summary>
            <param name="actual">the actual thing</param>
            <param name="expected">the expected thing</param>
            <param name="errorcode">error code if they are not</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.CompletedRequest">
            <summary>invoked for derived classes to cleanup before callback is invoked</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.HandleCompleted(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>Disposes the request object if it is not null. Invokes the user callback</summary>
            <param name="pereq">the request object</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.AsyncEndGetResponse(System.IAsyncResult)">
            <summary>handle request.BeginGetResponse with request.EndGetResponse and then copy response stream</summary>
            <param name="asyncResult">async result</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.CompleteCheck(System.Data.Services.Client.BaseAsyncResult.PerRequest,System.Data.Services.Client.InternalError)">
            <summary>verify non-null and not completed</summary>
            <param name="value">the request in progress</param>
            <param name="errorcode">error code if null or completed</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.FinishCurrentChange(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>Read and store response data for the current change, and try to start the next one</summary>
            <param name="pereq">the completed per request object</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.HandleFailure(System.Data.Services.Client.BaseAsyncResult.PerRequest,System.Exception)">
            <summary>Cache the exception that happened on the background thread for the caller of EndSaveChanges.</summary>
            <param name="pereq">the request object</param>
            <param name="e">exception object from background thread</param>
            <returns>true if the exception should be rethrown</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.AsyncEndGetRequestStream(System.IAsyncResult)">
            <summary>handle request.BeginGetRequestStream with request.EndGetRequestStream and then write out request stream</summary>
            <param name="asyncResult">async result</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.PostInvokeAsync(System.IAsyncResult,System.AsyncCallback)">
            <summary>
            Due to the unexpected behaviors of IAsyncResult.CompletedSynchronously in the System.Net networking stack, we have to make
            async calls to their APIs using the specific pattern they've prescribed. This method runs in the caller thread after the
            BeginXXX method returns. It checks IAsyncResult.CompletedSynchronously and if it is true, we invoke the callback in the
            caller thread.
            </summary>
            <param name="asyncResult">The IAsyncResult that represents the asynchronous operation we just called, which could still be pending</param>
            <param name="callback">Callback to be invoked when IAsyncResult.CompletedSynchronously is true.</param>
            <returns>Returns an IAsyncResult that represents the asynchronous operation we just called, which could still be pending</returns>
            <remarks>
            Please see remarks on BaseAsyncResult.InvokeAsync().
            Also note that PostInvokeTask below is a Win8 version of this method, so it should be kept in sync with any changes that occur here.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.GetDataServiceAsyncCallback(System.AsyncCallback)">
            <summary>
            Due to the unexpected behaviors of IAsyncResult.CompletedSynchronously in the System.Net networking stack, we have to make
            async calls to their APIs using the specific pattern they've prescribed. This method returns an AsyncCallback which we can pass
            to the BeginXXX methods in the caller thread. The returned callback will only run the wrapped callback if
            IAsyncResult.CompletedSynchronously is false, otherwise it returns immediately.
            </summary>
            <param name="callback">callback to be wrapped</param>
            <returns>Returnes a callback which will only run the wrapped callback if IAsyncResult.CompletedSynchronously is false, otherwise it returns immediately.</returns>
            <remarks>
            Please see remarks on BaseAsyncResult.InvokeAsync().
            Also note that the GetDataServiceTaskCallback method below is a Win8 version of this method, so it should be kept in sync with any changes that occur here.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.SetAsyncWaitHandle">
            <summary>
            Sets the async wait handle
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.AsyncRequestContentEndRead(System.IAsyncResult)">
            <summary>
            Callback for Stream.BeginRead on the request content input stream. Calls request content output stream BeginWrite
            and in case of synchronous also the next BeginRead.
            </summary>
            <param name="asyncResult">The asynchronous result associated with the completed operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.AsyncEndWrite(System.IAsyncResult)">
            <summary>handle requestStream.BeginWrite with requestStream.EndWrite then BeginGetResponse.</summary>
            <param name="asyncResult">async result</param>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.AsyncState">
            <summary>user state object parameter</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.AsyncWaitHandle">
            <summary>wait handle for when waiting is required</summary>
            <remarks>if displayed by debugger, it undesirable to create the WaitHandle</remarks>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.CompletedSynchronously">
            <summary>did the result complete synchronously?</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.IsCompleted">
            <summary>is the result complete?</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.IsCompletedInternally">
            <summary>is the result complete?</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.IsAborted">
            <summary>abort the result</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.Abortable">
            <summary>
            WebRequest available for DataServiceContext.CancelRequest
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.Failure">
            <summary>first exception that happened</summary>
        </member>
        <member name="T:System.Data.Services.Client.BaseAsyncResult.AsyncAction">
            <summary>
            This delegate exists to workaround limitations in the WP7 runtime.
            When limitations on the number of parameters to Func&lt;&gt; are resolved, this can be subsumed by the following:
            Func&lt;byte[], int, int, AsyncCallback, object, IAsyncResult&gt;
            </summary>
            <param name="buffer">buffer to transfer the data</param>
            <param name="offset">byte offset in buffer</param>
            <param name="length">max number of bytes in the buffer</param>
            <param name="asyncCallback">async callback to be called when the operation is complete</param>
            <param name="state">A user-provided object that distinguishes this particular asynchronous request from other requests.</param>
            <returns>An IAsyncResult that represents the asynchronous operation, which could still be pending</returns>
        </member>
        <member name="T:System.Data.Services.Client.BaseAsyncResult.AsyncStateBag">
            <summary>
            Wraps PerRequest and context reference together to save state information.
            Used instead of KeyValuePair in order to avoid FxCop CA908.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.AsyncStateBag.PerRequest">
            <summary>the request wrapper.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.AsyncStateBag.#ctor(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>
            Constructor for the state object
            </summary>
            <param name="pereq">See PerRequest field.</param>
        </member>
        <member name="T:System.Data.Services.Client.BaseAsyncResult.PerRequest">
            <summary>wrap the full request</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.PerRequest.True">
            <summary>
            The int equivalent for true.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.PerRequest.False">
            <summary>
            The int equivalent for false.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.PerRequest.requestStatus">
            <summary>
            did the sequence (BeginGetRequest, EndGetRequest, ... complete. 0 = In Progress, 1 = Completed, 2 = Aborted
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.PerRequest.requestContentBuffer">
            <summary>
            Buffer used when pumping data from the write stream to the request content stream
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.PerRequest.isDisposed">
            <summary>True if Dispose is called.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.PerRequest.disposeLock">
            <summary>Synchronize the Dispose method calls.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseAsyncResult.PerRequest.requestCompletedSynchronously">
            <summary>Did the request complete all of its steps synchronously? 1 represents true and 0 represents false.</summary>
            <remarks>Note that there is no overload for Interlocked.CompareExchange that takes booleans, we workaround using the overload for int.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.PerRequest.#ctor">
            <summary>ctor</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.PerRequest.SetRequestCompletedSynchronously(System.Boolean)">
            <summary>
            Sets the RequestCompletedSynchronously property.
            </summary>
            <param name="completedSynchronously">true if the async operation was completed synchronously, false otherwise.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.PerRequest.SetComplete">
            <summary>
            Change the request status to completed
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.PerRequest.SetAborted">
            <summary>
            Change the request status to aborted
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseAsyncResult.PerRequest.Dispose">
            <summary>
            dispose of the request object
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.Request">
            <summary>active web request</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.RequestStream">
            <summary>active web request stream</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.RequestContentStream">
            <summary>content to write to request stream</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.ResponseMessage">
            <summary>web response</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.ResponseStream">
            <summary>async web response stream</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.RequestCompletedSynchronously">
            <summary>did the request complete all of its steps synchronously?</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.RequestCompleted">
            <summary>
            Short cut for testing if request has finished (either completed or aborted)
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.RequestAborted">
            <summary>
            Short cut for testing request status is 2 (Aborted)
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.RequestContentBuffer">
            <summary>
            Buffer used when pumping data from the write stream to the request content stream
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseAsyncResult.PerRequest.RequestContentBufferValidLength">
            <summary>
            The length of the valid content in the RequestContentBuffer
            Once the data is read from the request content stream into the RequestContent buffer
            this length is set to the amount of data read.
            When the data is written into the request stream it is set back to 0.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.RequestInfo">
            <summary>where to pull the changes from</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.SerializerInstance">
            <summary>serializer to serialize the request data.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.ChangedEntries">
            <summary>sorted list of entries by change order</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.Options">
            <summary>option in use for SaveChanges</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.batchResponseMessage">
            <summary>batch web response</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.entryIndex">
            <summary>The ResourceBox or RelatedEnd currently in flight</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.streamRequestKind">
            <summary>what kind of request are we processing - POST MR or PUT MR</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.mediaResourceRequestStream">
            <summary>
            If the <see cref="F:System.Data.Services.Client.BaseSaveResult.streamRequestKind"/> is set to anything but None,
            this field holds a stream needs to be send in the request.
            This can be null in the case where the content of MR is empty. (In which case
            we will not try to open the request stream and thus avoid additional async call).
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.buildBatchBuffer">
            <summary>temporary buffer when cache results from CUD op in non-batching save changes</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.#ctor(System.Data.Services.Client.DataServiceContext,System.String,System.Data.Services.Client.DataServiceRequest[],System.Data.Services.Client.SaveChangesOptions,System.AsyncCallback,System.Object)">
            <summary>
            constructor for operations
            </summary>
            <param name="context">context</param>
            <param name="method">method</param>
            <param name="queries">queries</param>
            <param name="options">options</param>
            <param name="callback">user callback</param>
            <param name="state">user state object</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateSaveResult(System.Data.Services.Client.DataServiceContext,System.String,System.Data.Services.Client.DataServiceRequest[],System.Data.Services.Client.SaveChangesOptions,System.AsyncCallback,System.Object)">
            <summary>
            factory method for SaveResult
            </summary>
            <param name="context">context</param>
            <param name="method">method</param>
            <param name="queries">queries</param>
            <param name="options">options</param>
            <param name="callback">user callback</param>
            <param name="state">user state object</param>
            <returns>a new instance of SaveResult or BatchSaveResult, depending on the options value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleResponse(System.Data.Services.Client.RequestInfo,System.Net.HttpStatusCode,System.String,System.Func{System.IO.Stream},System.Boolean,System.Version@)">
            <summary>
            Handle response by looking at status and possibly throwing an exception.
            </summary>
            <param name="requestInfo">The request info.</param>
            <param name="statusCode">response status code</param>
            <param name="responseVersion">Version string on the response header; possibly null.</param>
            <param name="getResponseStream">delegate to get response stream</param>
            <param name="throwOnFailure">throw or return on failure</param>
            <param name="parsedResponseVersion">Parsed response version (null if no version was specified).</param>
            <returns>exception on failure</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.GetResponseText(System.Func{System.IO.Stream},System.Net.HttpStatusCode)">
            <summary>
            get the response text into a string
            </summary>
            <param name="getResponseStream">method to get response stream</param>
            <param name="statusCode">status code</param>
            <returns>text</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.EndRequest">
            <summary>process the batch</summary>
            <returns>data service response</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.GetLinkHttpMethod(System.Data.Services.Client.LinkDescriptor)">
            <summary>Get the value of HttpMethod enum from link resource state</summary>
            <param name="link">Instance of LinkDescriptor containing the link state and type of link.</param>
            <returns>HttpMethod enum value for the link descriptor state.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.ApplyPreferences(System.Data.Services.Client.HeaderCollection,System.String,System.Data.Services.Client.DataServiceResponsePreference,System.Version@)">
            <summary>
            Apply the response preferences for the client.
            </summary>
            <param name="headers">Headers to which preferences will be added.</param>
            <param name="method">HTTP method.</param>
            <param name="responsePreference">Response preference.</param>
            <param name="requestVersion">Request version so far for the request. The method may modify it.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleResponse">
            <summary>
            Handle response.
            </summary>
            <returns>an instance of the DataServiceResponse.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateRequestMessage(System.String,System.Uri,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.HttpStack,System.Data.Services.Client.Descriptor)">
            <summary>
            Returns the request message to write the headers and payload into.
            </summary>
            <param name="method">Http method for the request.</param>
            <param name="requestUri">Base Uri for the request.</param>
            <param name="headers">Request headers.</param>
            <param name="httpStack">HttpStack to use.</param>
            <param name="descriptor">Descriptor for the request, if there is one.</param>
            <returns>an instance of IODataRequestMessage.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.GetHttpMethod(System.Data.Services.Client.EntityStates,System.Version@)">
            <summary>Get the value of the HttpMethod enum from entity resource state</summary>
            <param name="state">resource state</param>
            <param name="requestVersion">The version of the request determined so far. The method may modify this if needed.</param>
            <returns>HttpMethod value from the entity resource state.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateChangeData(System.Int32,System.Data.Services.Client.ODataRequestMessageWrapper)">
            <summary>
            Create request message for the descriptor at the given index.
            </summary>
            <param name="index">Index into changed entries</param>
            <param name="requestMessage">IODataRequestMessage that needs to be used for writing the payload.</param>
            <returns>true, if any request payload was generated, else false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleCompleted(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>Set the AsyncWait and invoke the user callback.</summary>
            <param name="pereq">the request object</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.AsyncEndGetResponse(System.IAsyncResult)">
            <summary>handle request.BeginGetResponse with request.EndGetResponse and then copy response stream</summary>
            <param name="asyncResult">async result</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleOperationResponse(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>IODataResponseMessage contain response for the operation.</summary>
            <param name="responseMessage">IODataResponseMessage instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleOperationResponseHeaders(System.Net.HttpStatusCode,System.Data.Services.Client.HeaderCollection)">
            <summary>operation with HttpWebResponse</summary>
            <param name="statusCode">status code of the response.</param>
            <param name="headers">response headers.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleOperationResponse(System.Data.Services.Client.Descriptor,System.Data.Services.Client.HeaderCollection)">
            <summary>
            Handle operation response
            </summary>
            <param name="descriptor">descriptor whose response is getting processed.</param>
            <param name="contentHeaders">content headers as returned in the response.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.GetMaterializer(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.ResponseInfo)">
            <summary>
            Get the materializer to process the response.
            </summary>
            <param name="entityDescriptor">entity descriptor whose response is getting materialized.</param>
            <param name="responseInfo">information about the response to be materialized.</param>
            <returns>an instance of MaterializeAtom, that can be used to materialize the response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CompletedRequest">
            <summary>cleanup work to do once the batch / savechanges is complete</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateResponseInfo(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Create the response info instance to be passed to the materializer.
            </summary>
            <param name="entityDescriptor">entity descriptor whose response is getting handled.</param>
            <returns>instance of the response info class.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.RelatedLinks(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            enumerate the related Modified/Unchanged links for an added item
            </summary>
            <param name="entityDescriptor">entity</param>
            <returns>related links</returns>
            <remarks>
            During a non-batch SaveChanges, an Added entity can become an Unchanged entity
            and should be included in the set of related links for the second Added entity.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.SaveResultProcessed(System.Data.Services.Client.Descriptor)">
            <summary>flag results as being processed</summary>
            <param name="descriptor">result descriptor being processed</param>
            <returns>count of related links that were also processed</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateRequest(System.Data.Services.Client.LinkDescriptor)">
            <summary>
            Generate the link payload.
            </summary>
            <param name="binding">binding</param>
            <returns>An instance of ODataRequestMessage for the link request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateRequest(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Create ODataRequestMessage for the given entity.
            </summary>
            <param name="entityDescriptor">resource</param>
            <returns>An instance of ODataRequestMessage for the given entity.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateTopLevelRequest(System.String,System.Uri,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.HttpStack,System.Data.Services.Client.Descriptor)">
            <summary>
            Returns the request message to write the headers and payload into.
            </summary>
            <param name="method">Http method for the request.</param>
            <param name="requestUri">Base Uri for the request.</param>
            <param name="headers">Request headers.</param>
            <param name="httpStack">HttpStack to use.</param>
            <param name="descriptor">Descriptor for the request, if there is one.</param>
            <returns>an instance of IODataRequestMessage.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.DetermineRequestVersion(System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Data.Services.Client.EntityStates)">
            <summary>
            Figures out value to be written in DataServiceVersion HTTP header for the given entity based on features used in this entity.
            </summary>
            <param name="clientType">Entity type for which data service version needs to be determined.</param>
            <param name="state">The resource state for the entity.</param>
            <returns>Data service version for the given entity and state.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CanHandleResponseVersion(System.String,System.Version@)">
            <summary>Checks whether a WCF Data Service version string can be handled.</summary>
            <param name="responseVersion">Version string on the response header; possibly null.</param>
            <param name="parsedResponseVersion">The response version parsed into a <see cref="T:System.Version"/> instance
            if the version was valid and can be handled, otherwise null.</param>
            <returns>true if the version can be handled; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleResponsePost(System.Data.Services.Client.LinkDescriptor)">
            <summary>Handle changeset response.</summary>
            <param name="linkDescriptor">headers of changeset response</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.ValidateLinkDescriptorSourceAndTargetHaveIdentities(System.Data.Services.Client.LinkDescriptor,System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Validates that the link descriptor source and target have identities.
            </summary>
            <param name="binding">The binding.</param>
            <param name="sourceResource">The source resource.</param>
            <param name="targetResource">The target resource.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.SerializeSupportedVersions">
            <summary>
            Serialize supported data service versions to a string that will be used in the exception message.
            The string contains versions in single quotes separated by comma followed by a single space (e.g. "'1.0', '2.0'").
            </summary>
            <returns>Supported data service versions in single quotes separated by comma followed by a space.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.AppendTargetEntityKeyIfNeeded(System.Uri,System.Data.Services.Client.LinkDescriptor,System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Appends the target entity key to the uri if the binding is in the deleted state and the property is a collection.
            </summary>
            <param name="linkUri">The link URI so far.</param>
            <param name="binding">The binding.</param>
            <param name="targetResource">The target's entity descriptor.</param>
            <returns>The original link uri or one with the target entity key appended.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateRequestData(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.ODataRequestMessageWrapper)">
            <summary>
            Generate a request for the given entity.
            </summary>
            <param name="entityDescriptor">Instance of EntityDescriptor.</param>
            <param name="requestMessage">Instance of IODataRequestMessage to be used to generate the payload.</param>
            <returns>True if the payload was generated, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.CreateRequestData(System.Data.Services.Client.LinkDescriptor,System.Data.Services.Client.ODataRequestMessageWrapper)">
            <summary>
            Generate a request for the given link.
            </summary>
            <param name="binding">Instance of LinkDescriptor.</param>
            <param name="requestMessage">Instance of IODataRequestMessage to be used to generate the payload.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleResponsePost(System.Data.Services.Client.Descriptor,System.Data.Services.Client.HeaderCollection)">
            <summary>Handle changeset response.</summary>
            <param name="descriptor">descriptor whose response is getting handled.</param>
            <param name="contentHeaders">response headers.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleResponsePost(System.Data.Services.Client.EntityDescriptor,System.String)">
            <summary>Handle changeset response for the given entity descriptor.</summary>
            <param name="entityDescriptor">entity descriptor whose response is getting handled.</param>
            <param name="etag">ETag header value from the server response (or null if no etag or if there is an actual response)</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleResponsePut(System.Data.Services.Client.Descriptor,System.Data.Services.Client.HeaderCollection)">
            <summary>
            Handle the PUT response sent by the server
            </summary>
            <param name="descriptor">descriptor, whose response is getting handled.</param>
            <param name="responseHeaders">response headers.</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.HandleResponseDelete(System.Data.Services.Client.Descriptor)">
            <summary>Handle response to deleted entity.</summary>
            <param name="descriptor">deleted entity</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.AsyncEndRead(System.IAsyncResult)">
            <summary>handle responseStream.BeginRead with responseStream.EndRead</summary>
            <param name="asyncResult">async result</param>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.MaterializeResponse(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.ResponseInfo,System.String)">
            <summary>
            Materialize the response payload.
            </summary>
            <param name="entityDescriptor">entity descriptor whose response is getting materialized.</param>
            <param name="responseInfo">information about the response to be materialized.</param>
            <param name="etag">etag value, if specified in the response header.</param>
        </member>
        <member name="P:System.Data.Services.Client.BaseSaveResult.IsBatchRequest">
            <summary>returns true if its a batch, otherwise returns false.</summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseSaveResult.ResponseStream">
            <summary>
            In async case, this is a memory stream used to cache responses, as we are reading async from the underlying http web response stream.
            In sync case, this is the actual response stream, as returned by the http request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BaseSaveResult.ProcessResponsePayload">
            <summary>
            returns true if the response payload needs to be processed.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.BaseSaveResult.StreamRequestKind">
            <summary>
            enum which says what kind of request we are currently processing
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.StreamRequestKind.None">
            <summary>This request doesn't involve Media Resource or named stream.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.StreamRequestKind.PostMediaResource">
            <summary>This request is a POST to a MLE and the body contains the content of the MR.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.StreamRequestKind.PutMediaResource">
            <summary>This request is a PUT to MR and the body contains the content of the MR.</summary>
        </member>
        <member name="T:System.Data.Services.Client.BaseSaveResult.AsyncReadState">
            <summary>
            Async read state
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.AsyncReadState.Pereq">
            <summary>PerRequest class which tracks the request and response stream </summary>
        </member>
        <member name="F:System.Data.Services.Client.BaseSaveResult.AsyncReadState.totalByteCopied">
            <summary>total number of byte copied.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BaseSaveResult.AsyncReadState.#ctor(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>
            constructor
            </summary>
            <param name="pereq">Perrequest class</param>
        </member>
        <member name="P:System.Data.Services.Client.BaseSaveResult.AsyncReadState.TotalByteCopied">
            <summary>
            Returns the total number of byte copied till now.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.BatchSaveResult">
            <summary>
            Handles the batch requests and responses (both sync and async)
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.StreamCopyBufferSize">
            <summary>The size of the copy buffer to create.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.Queries">
            <summary>Array of queries being executed</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.responseStream">
            <summary>Response stream containing the entire batch response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.batchWriter">
            <summary>Instance of ODataBatchWriter used to write current batch request.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.batchMessageReader">
            <summary>The message reader used to read the batch response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.currentOperationResponse">
            <summary>Object representing the current operation response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.streamCopyBuffer">
            <summary>Buffer used for caching operation response body streams.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.#ctor(System.Data.Services.Client.DataServiceContext,System.String,System.Data.Services.Client.DataServiceRequest[],System.Data.Services.Client.SaveChangesOptions,System.AsyncCallback,System.Object)">
            <summary>
            constructor for BatchSaveResult
            </summary>
            <param name="context">context</param>
            <param name="method">method</param>
            <param name="queries">queries</param>
            <param name="options">options</param>
            <param name="callback">user callback</param>
            <param name="state">user state object</param>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.BatchBeginRequest">
            <summary>initial the async batch save changeset</summary>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.BatchRequest">
            <summary>
            Synchronous batch request
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.FinishCurrentChange(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>Read and store response data for the current change</summary>
            <param name="pereq">The completed per request object</param>
            <remarks>This is called only from the async code paths, when the response to the batch has been read fully.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.HandleOperationResponse(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>IODataResponseMessage contain response for the operation.</summary>
            <param name="responseMessage">IODataResponseMessage instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.HandleResponse">
            <summary>
            Handle response.
            </summary>
            <returns>an instance of the DataServiceResponse, containing individual operation responses for this batch request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.GetMaterializer(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.ResponseInfo)">
            <summary>
            Get the materializer to process the response.
            </summary>
            <param name="entityDescriptor">entity descriptor whose response is getting materialized.</param>
            <param name="responseInfo">information about the response to be materialized.</param>
            <returns>an instance of MaterializeAtom, that can be used to materialize the response.</returns>
            <remarks>
            This can only be called from inside the HandleBatchResponse or during enumeration of the responses.
            This is used when processing responses for update operations.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.CreateRequestMessage(System.String,System.Uri,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.HttpStack,System.Data.Services.Client.Descriptor)">
            <summary>
            Returns the request message to write the headers and payload into.
            </summary>
            <param name="method">Http method for the request.</param>
            <param name="requestUri">Base Uri for the request.</param>
            <param name="headers">Request headers.</param>
            <param name="httpStack">HttpStack to use.</param>
            <param name="descriptor">Descriptor for the request, if there is one.</param>
            <returns>an instance of IODataRequestMessage.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.CreateMultiPartMimeContentType">
            <summary>
            Creates the type of the multi part MIME content.
            </summary>
            <returns>A multipart mime header with a generated batch boundary</returns>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.CreateBatchRequest">
            <summary>
            Creates a ODataRequestMessage for batch request.
            </summary>
            <returns>Returns an instance of ODataRequestMessage for the batch request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.GenerateBatchRequest">
            <summary>
            Generate the batch request for all changes to save.
            </summary>
            <returns>Returns the instance of ODataRequestMessage containing all the headers and payload for the batch request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.HandleBatchResponse">
            <summary>
            process the batch response
            </summary>
            <returns>an instance of the DataServiceResponse, containing individual operation responses for this batch request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.HandleBatchResponseInternal(Microsoft.Data.OData.ODataBatchReader)">
            <summary>
            process the batch response
            </summary>
            <param name="batchReader">The batch reader to use for reading the batch response.</param>
            <returns>an instance of the DataServiceResponse, containing individual operation responses for this batch request.</returns>
            <remarks>
            The message reader for the entire batch response is stored in the this.batchMessageReader.
            The message reader is disposable, but this method should not dispose it itself. It will be either disposed by the caller (in case of exception)
            or the ownership will be passed to the returned response object (in case of success).
            In could also be diposed indirectly by this method when it enumerates through the responses.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.HandleBatchResponse(Microsoft.Data.OData.ODataBatchReader)">
            <summary>
            process the batch response
            </summary>
            <param name="batchReader">The batch reader to use for reading the batch response.</param>
            <returns>enumerable of QueryResponse or null</returns>
            <remarks>
            The batch message reader for the entire batch response is stored in this.batchMessageReader.
            Note that this method takes over the ownership of this reader and must Dispose it if it successfully returns.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.ProcessCurrentOperationResponse(Microsoft.Data.OData.ODataBatchReader,System.Boolean)">
            <summary>
            Processed the operation response reported by the batch reader.
            This is a side-effecting method that is tied deeply to how it is used in the batch processing pipeline.
            </summary>
            <param name="batchReader">The batch reader to get the operation response from.</param>
            <param name="isChangesetOperation">True if the current operation is inside a changeset (implying CUD, not query)</param>
            <returns>An exception if the operation response is an error response, null for success response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.ValidateContentID(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Validate the content-id.
            </summary>
            <param name="contentHeaders">The response headers for the operation response being processed.</param>
            <returns>Returns the correct ChangedEntries index.</returns>
        </member>
        <member name="P:System.Data.Services.Client.BatchSaveResult.IsBatchRequest">
            <summary>returns true since this class handles batch requests.</summary>
        </member>
        <member name="P:System.Data.Services.Client.BatchSaveResult.ResponseStream">
            <summary>
            In async case, this is a memory stream used to cache responses, as we are reading async from the underlying http web response stream.
            In non-async case, this is the actual response stream, as returned by the http request.
            </summary>
            <remarks>
            This is the stream which holds the entire batch response, when we process any given part those streams are enumerated through
            a different field (currentOperationResponseContentStream).
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.BatchSaveResult.ProcessResponsePayload">
            <summary>
            returns true if the response payload needs to be processed.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse">
            <summary>
            Stores information about the currenly processed operation response.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.statusCode">
            <summary>The HTTP response status code for the current operation response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.headers">
            <summary>The HTTP headers for the current operation response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.contentStream">
            <summary>The content stream for the current operation response.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.#ctor(System.Net.HttpStatusCode,System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}},System.IO.MemoryStream)">
            <summary>
            Constructor.
            </summary>
            <param name="statusCode">The status code of the response.</param>
            <param name="headers">The response headers.</param>
            <param name="contentStream">An in-memory copy of the response stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.CreateResponseMessage">
            <summary>
            Creates IODataResponseMessage for the operation response.
            </summary>
            <returns>
            IODataResponseMessage for the operation response.
            null if the operation response has empty content.
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.StatusCode">
            <summary>
            The status code of the operation response.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.ContentStream">
            <summary>
            The content stream of the operation response.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.HasEmptyContent">
            <summary>
            true if the content stream is empty, false otherwise.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BatchSaveResult.CurrentOperationResponse.Headers">
            <summary>
            The response headers for the operation response.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.BodyOperationParameter">
            <summary> Represents a parameter associated with a service action. </summary>
        </member>
        <member name="T:System.Data.Services.Client.OperationParameter">
            <summary>Represents a parameter passed to a service action, service function or a service operation when it is Executed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationParameter.parameterName">
            <summary>The name of the operation parameter.</summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationParameter.parameterValue">
            <summary>The value of the operation parameter.</summary>
        </member>
        <member name="M:System.Data.Services.Client.OperationParameter.#ctor(System.String,System.Object)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.OperationParameter" /> class.</summary>
            <param name="name">The name of the operation parameter.</param>
            <param name="value">The value of the operation parameter.</param>
        </member>
        <member name="P:System.Data.Services.Client.OperationParameter.Name">
            <summary>Gets the name of the operation parameter. </summary>
            <returns>The name of the operation parameter.</returns>
        </member>
        <member name="P:System.Data.Services.Client.OperationParameter.Value">
            <summary>Gets the value of the operation parameter. </summary>
            <returns>The value of the operation parameter.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BodyOperationParameter.#ctor(System.String,System.Object)">
            <summary> Instantiates a new BodyOperationParameter </summary>
            <param name="name">The name of the body operation parameter.</param>
            <param name="value">The value of the body operation parameter.</param>
        </member>
        <member name="T:System.Data.Services.Client.BuildingRequestEventArgs">
            <summary>
            EventArgs for the BuildingRequest event.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BuildingRequestEventArgs.requestUri">
            <summary>
            Uri of the outgoing request.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BuildingRequestEventArgs.#ctor(System.String,System.Uri,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.Descriptor,System.Data.Services.Client.HttpStack)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.BuildingRequestEventArgs"/> class.
            </summary>
            <param name="method">The method.</param>
            <param name="requestUri">The request URI.</param>
            <param name="headers">The request headers.</param>
            <param name="descriptor">Descriptor for this request; or null if there isn't one.</param>
            <param name="httpStack">The http stack.</param>
        </member>
        <member name="M:System.Data.Services.Client.BuildingRequestEventArgs.Clone">
            <summary>
            Retrieves a new RequestMessageArgs with any custom query parameters added.
            </summary>
            <returns>A new RequestMessageArgs instance that takes new custom query options into account.</returns>
        </member>
        <member name="P:System.Data.Services.Client.BuildingRequestEventArgs.Method">
            <summary>
            Gets the Request HTTP Method that the outgoing request will use.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BuildingRequestEventArgs.RequestUri">
            <summary>
            The Uri of the outgoing request. The Uri may be altered. No error checking will be performed against any changes made.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BuildingRequestEventArgs.Headers">
            <summary>
            The headers for this request. Adding new custom headers is supported. Behavior is undefined for changing existing headers or adding
            system headers. No error checking will be performed against any changes made.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BuildingRequestEventArgs.Descriptor">
            <summary>
            Descriptor for this request if there is one; null otherwise.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.BuildingRequestEventArgs.ClientHttpStack">
            <summary>
            Gets the http stack.
            </summary>
            <remarks>
            The reason for having this property is that this is request specific
            and cannot be taken from the context. For e.g. In silverlight, irrespective
            of the value of HttpStack property, for stream requests (get or update), we
            use ClientHttp.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.BuildingRequestEventArgs.HeaderCollection">
            <summary>
            Returns the set of headers as HeaderCollection instance.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ClientEdmCollectionValue">
            <summary>
            Implementation of <see cref="T:Microsoft.Data.Edm.Values.IEdmCollectionValue"/> which wraps client-side objects.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmCollectionValue.#ctor(Microsoft.Data.Edm.IEdmTypeReference,System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.Values.IEdmValue})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ClientEdmCollectionValue"/> class.
            </summary>
            <param name="type">The type of the collection.</param>
            <param name="elements">The elements of the collection.</param>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmCollectionValue.Type">
            <summary>
            Gets the type of this value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmCollectionValue.ValueKind">
            <summary>
            Gets the kind of this value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmCollectionValue.Elements">
            <summary>
            Gets the values stored in this collection.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ClientEdmCollectionValue.NullEdmDelayedValue">
            <summary>
            Non-delayed implementation of <see cref="T:Microsoft.Data.Edm.Values.IEdmDelayedValue"/>
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmCollectionValue.NullEdmDelayedValue.#ctor(Microsoft.Data.Edm.Values.IEdmValue)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ClientEdmCollectionValue.NullEdmDelayedValue"/> class.
            </summary>
            <param name="value">The value.</param>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmCollectionValue.NullEdmDelayedValue.Value">
            <summary>
            Gets the data stored in this value.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ClientEdmModel">
            <summary>
            EdmModel describing the client metadata
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmModel.clrToEdmTypeCache">
            <summary>A cache that maps a client Clr type to it corresponding Edm type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmModel.typeNameToClientTypeAnnotationCache">
            <summary>A cache that maps a client type name to the corresponding client type annotation.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmModel.directValueAnnotationsManager">
            <summary>The annotations manager.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmModel.maxProtocolVersion">
            <summary>The max protocol version this Edm model is created for.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmModel.coreModel">
            <summary>Referenced core model.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.#ctor(System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>
            Constructor.
            </summary>
            <param name="maxProtocolVersion">The protocol version this Edm model is created for.</param>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.FindDeclaredEntityContainer(System.String)">
            <summary>
            Return the entity container with the given name.
            </summary>
            <param name="name">Name of the entity container.</param>
            <returns>EntityContainer with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.FindDeclaredType(System.String)">
            <summary>
            Searches for a schema element with the given name in this model and returns null if no such schema element exists.
            </summary>
            <param name="qualifiedName">The qualified name of the schema element being found.</param>
            <returns>The requested schema element, or null if no such schema element exists.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.FindDeclaredFunctions(System.String)">
            <summary>
            Searches for functions with the given name in this model and returns null if no such function exists.
            </summary>
            <param name="qualifiedName">The qualified name of the function being found.</param>
            <returns>A set functions sharing the specified qualified name, or an empty enumerable if no such function exists.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.FindDeclaredValueTerm(System.String)">
            <summary>
            Searches for a value term with the given name in this model and returns null if no such value term exists.
            </summary>
            <param name="qualifiedName">The qualified name of the value term being found.</param>
            <returns>The requested value term, or null if no such value term exists.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.FindDirectlyDerivedTypes(Microsoft.Data.Edm.IEdmStructuredType)">
            <summary>
            Finds a list of types that derive directly from the supplied type.
            </summary>
            <param name="type">The base type that derived types are being searched for.</param>
            <returns>A list of types that derive directly from the type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.FindDeclaredVocabularyAnnotations(Microsoft.Data.Edm.IEdmVocabularyAnnotatable)">
            <summary>
            Searches for vocabulary annotations specified by this model or a referenced model for a given element.
            </summary>
            <param name="element">The annotated element.</param>
            <returns>The vocabulary annotations for the element.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.GetOrCreateEdmType(System.Type)">
            <summary>
            Get or create a client EDM type instance.
            </summary>
            <param name="type">type to wrap</param>
            <returns>client type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.GetClientTypeAnnotation(System.String)">
            <summary>
            Get the client type annotation for the given name.
            </summary>
            <param name="edmTypeName">Name of the type.</param>
            <returns>An instance of ClientTypeAnnotation for the type with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.GetTypeHierarchy(System.Type,System.Reflection.PropertyInfo[]@,System.Boolean@)">
            <summary>Returns <paramref name="type"/> and its base types, in the order of most base type first and <paramref name="type"/> last.</summary>
            <param name="type">Type instance in question.</param>
            <param name="keyProperties">Returns the list of key properties if <paramref name="type"/> is an entity type; null otherwise.</param>
            <param name="hasProperties">true if <paramref name="type"/> has any (declared or inherited) properties; otherwise false.</param>
            <returns>Returns <paramref name="type"/> and its base types, in the order of most base type first and <paramref name="type"/> last.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.SetMimeTypeForProperties(Microsoft.Data.Edm.IEdmStructuredType)">
            <summary>
            Find properties with dynamic MIME type related properties and
            set the references from each ClientProperty to its related MIME type property
            </summary>
            <param name="edmStructuredType">Client edm type instance to wire up the mime type properties.</param>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.GetOrCreateEdmTypeInternal(System.Type)">
            <summary>
            Get or create a client EDM type instance.
            </summary>
            <param name="type">type to wrap</param>
            <returns>client type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.GetOrCreateEdmTypeInternal(Microsoft.Data.Edm.IEdmStructuredType,System.Type,System.Reflection.PropertyInfo[],System.Boolean,System.Nullable{System.Boolean})">
            <summary>
            Get or create a client EDM type instance.
            </summary>
            <param name="edmBaseType">The base type of this structured type.</param>
            <param name="type">type to wrap</param>
            <param name="keyProperties">List of key properties to add to <paramref name="type"/> if the type is an entity type; null otherwise.</param>
            <param name="isEntity">true if <paramref name="type"/> is an entity type; false otherwise.</param>
            <param name="hasProperties">true if the <paramref name="type"/> is known to have properties; false if <paramref name="type"/> is known to have no properties; null if nothing is known about the properties.</param>
            <returns>client type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.CreateEdmProperty(Microsoft.Data.Edm.IEdmStructuredType,System.Reflection.PropertyInfo)">
            <summary>
            Creates an Edm property.
            </summary>
            <param name="declaringType">Type declaring this property.</param>
            <param name="propertyInfo">PropertyInfo instance for this property.</param>
            <returns>Returns a new instance of Edm property.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.GetOrCreateClientTypeAnnotation(Microsoft.Data.Edm.IEdmType,System.Type)">
            <summary>
            Gets or creates client type annotation.
            </summary>
            <param name="edmType">The EdmType to use for creating client type annotation</param>
            <param name="type">The Clr type to create client type annotation for.</param>
            <returns>Client type annotation</returns>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.VocabularyAnnotations">
            <summary>
            Returns all the vocabulary annotations defined in the model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.ReferencedModels">
            <summary>
            Returns all the referenced models.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.SchemaElements">
            <summary>
            Returns all the schema elements.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.DirectValueAnnotationsManager">
            <summary>
            Returns the model's annotations manager.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.MaxProtocolVersion">
            <summary>
            Gets the max protocol version of the model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.ResolveBackingField">
            <summary>Callback for getting the backing field for a property.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ClientEdmModel.EdmTypeCacheValue">
            <summary>
            Cache value for the type cache.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmModel.EdmTypeCacheValue.edmType">
            <summary>The cached EDM type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmModel.EdmTypeCacheValue.hasProperties">
            <summary>true if the Clr type this EDM type is based on has settable properties; otherwise false.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmModel.EdmTypeCacheValue.#ctor(Microsoft.Data.Edm.IEdmType,System.Nullable{System.Boolean})">
            <summary>
            Creates a new instance of the EDM type cache value.
            </summary>
            <param name="edmType">The cached EDM type.</param>
            <param name="hasProperties">true if the Clr type this EDM type is based on has settable properties; otherwise false.</param>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.EdmTypeCacheValue.EdmType">
            <summary>
            The cached EDM type.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmModel.EdmTypeCacheValue.HasProperties">
            <summary>
            true if the Clr type this EDM type is based on has settable properties; otherwise false.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ClientEdmStructuredValue">
            <summary>
            Implementation of <see cref="T:Microsoft.Data.Edm.Values.IEdmStructuredValue"/> which wraps client-side objects.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmStructuredValue.structuredValue">
            <summary>The structured value this instance is wrapping.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmStructuredValue.typeAnnotation">
            <summary>The client-side metadata about this value.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ClientEdmStructuredValue.model">
            <summary>The model.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmStructuredValue.#ctor(System.Object,System.Data.Services.Client.ClientEdmModel,System.Data.Services.Client.Metadata.ClientTypeAnnotation)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ClientEdmStructuredValue"/> class.
            </summary>
            <param name="structuredValue">The structured value.</param>
            <param name="model">The model.</param>
            <param name="clientTypeAnnotation">The client type annotation.</param>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmStructuredValue.FindPropertyValue(System.String)">
            <summary>
            Finds the value corresponding to the provided property name.
            </summary>
            <param name="propertyName">Property to find the value of.</param>
            <returns>
            The found property, or null if no property was found.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmStructuredValue.BuildEdmPropertyValue(System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Builds an edm property value from the given annotation.
            </summary>
            <param name="propertyAnnotation">The property annotation.</param>
            <returns>The property value</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientEdmStructuredValue.ConvertToEdmValue(System.Object,Microsoft.Data.Edm.IEdmTypeReference)">
            <summary>
            Converts a clr value to an edm value.
            </summary>
            <param name="propertyValue">The property value.</param>
            <param name="edmPropertyType">Type of the property.</param>
            <returns>
            The converted value
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmStructuredValue.Type">
            <summary>
            Gets the type of this value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmStructuredValue.ValueKind">
            <summary>
            Gets the kind of this value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ClientEdmStructuredValue.PropertyValues">
            <summary>
            Gets the property values of this structured value.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ContentStream">
            <summary>
            Helper class to wrap the stream with the content of the request.
            We need to remember if the stream came from us (IsKnownMemoryStream is true)
            or if it came from outside. For backward compatibility we set the Content-Length for our streams
            since they are always MemoryStream and thus know their length.
            For outside streams (content of the MR requests) we don't set Content-Length since the stream
            might not be able to answer to the Length call.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ContentStream.stream">
            <summary>
            The stream with the content of the request
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ContentStream.isKnownMemoryStream">
            <summary>
            Set to true if the stream is a MemoryStream and we produced it (so it does have the buffer accesible)
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ContentStream.#ctor(System.IO.Stream,System.Boolean)">
            <summary>
            Constructor
            </summary>
            <param name="stream">The stream with the request content</param>
            <param name="isKnownMemoryStream">The stream was create by us and it's a MemoryStream</param>
        </member>
        <member name="P:System.Data.Services.Client.ContentStream.Stream">
            <summary>
            The stream with the content of the request
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ContentStream.IsKnownMemoryStream">
            <summary>
            Set to true if the stream is a MemoryStream and we produced it (so it does have the buffer accesible)
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder">
            <summary>
            Implementation of <see cref="T:System.Data.Services.Client.ODataEntityMetadataBuilder"/> which uses OData conventions.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.entityInstance">
            <summary>The entity instance to build metadata for.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.entitySetName">
            <summary>The name of the set the entity instance belongs to.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.baseUri">
            <summary>The base uri of the service.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.uriBuilder">
            <summary>The convention-based uri builder to use.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.#ctor(System.Uri,System.String,Microsoft.Data.Edm.Values.IEdmStructuredValue,System.Data.Services.Common.DataServiceUrlConventions)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder"/> class.
            </summary>
            <param name="baseUri">The base URI of the service.</param>
            <param name="entitySetName">Name of the entity set the entity belongs to.</param>
            <param name="entityInstance">The entity instance to build metadata for.</param>
            <param name="conventions">The user-specified conventions to use.</param>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.#ctor(System.Data.Services.Client.UriResolver,System.String,Microsoft.Data.Edm.Values.IEdmStructuredValue,System.Data.Services.Common.DataServiceUrlConventions)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder"/> class.
            </summary>
            <param name="resolver">The URI resolver to use.</param>
            <param name="entitySetName">Name of the entity set the entity belongs to.</param>
            <param name="entityInstance">The entity instance to build metadata for.</param>
            <param name="conventions">The user-specified conventions to use.</param>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.GetEditLink">
            <summary>
            Gets the edit link of the entity.
            </summary>
            <returns>
            The absolute URI of the edit link for the entity.
            Or null if it is not possible to determine the edit link.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.GetId">
            <summary>
            Gets the ID of the entity.
            </summary>
            <returns>
            The ID for the entity.
            Or null if it is not possible to determine the ID.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.GetETag">
            <summary>
            Gets the ETag of the entity.
            </summary>
            <returns>
            The ETag for the entity.
            Or null if it is not possible to determine the ETag.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.GetReadLink">
            <summary>
            Gets the read link of the entity.
            </summary>
            <returns>
            The absolute URI of the read link for the entity.
            Or null if it is not possible to determine the read link.
            </returns>
        </member>
        <member name="T:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.ConventionalODataUriBuilder">
            <summary>
            Implementation of <see cref="T:System.Data.Services.Client.ODataUriBuilder"/> that uses conventions.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.ConventionalODataUriBuilder.resolver">
            <summary>The uri resolver to use for entity sets.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.ConventionalODataUriBuilder.conventions">
            <summary>The user specified conventions.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.ConventionalODataUriBuilder.#ctor(System.Data.Services.Client.UriResolver,System.Data.Services.Common.DataServiceUrlConventions)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.ConventionalODataUriBuilder"/> class.
            </summary>
            <param name="resolver">The uri resolver to use.</param>
            <param name="conventions">The user specified conventions to use.</param>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.ConventionalODataUriBuilder.BuildEntitySetUri(System.Uri,System.String)">
            <summary>
            Appends to create the URI for an entity set.
            </summary>
            <param name="baseUri">The URI to append to</param>
            <param name="entitySetName">The entity set name.</param>
            <returns>
            The entity set URI.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ConventionalODataEntityMetadataBuilder.ConventionalODataUriBuilder.BuildEntityInstanceUri(System.Uri,Microsoft.Data.Edm.Values.IEdmStructuredValue)">
            <summary>
            Appends to create the entity instance URI for the specified <paramref name="entityInstance"/>.
            </summary>
            <param name="baseUri">The URI to append to</param>
            <param name="entityInstance">The entity instance to use.</param>
            <returns>
            The entity instance URI.
            </returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientMessageWriterSettingsShim">
            <summary>
            Client writer settings shim class to restrict settings to the base for OData message writers.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientMessageWriterSettingsShim.settings">
            <summary> The settings. </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientMessageWriterSettingsShim.#ctor(Microsoft.Data.OData.ODataMessageWriterSettingsBase)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientMessageWriterSettingsShim"/> class.
            </summary>
            <param name="settings">The settings.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientMessageWriterSettingsShim.Indent">
            <summary>
            Flag to control whether the writer should use indentation or not.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientMessageWriterSettingsShim.CheckCharacters">
            <summary>
            Flag to control whether the writer should check for valid Xml characters or not.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientMessageWriterSettingsShim.MessageQuotas">
            <summary>
            Quotas to use for limiting resource consumption when writing an OData message.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim">
            <summary>
            Client reader settings shim class to restrict settings to the base for OData message reader.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim.settings">
            <summary> The settings. </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim.#ctor(Microsoft.Data.OData.ODataMessageReaderSettingsBase)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim"/> class.
            </summary>
            <param name="settings">The settings.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim.EnableAtomMetadataReading">
            <summary>
            Flag to control whether ATOM metadata is read in ATOM payloads.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim.CheckCharacters">
            <summary>
            Flag to control whether the writer should check for valid Xml characters or not.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim.MessageQuotas">
            <summary>
            Quotas to use for limiting resource consumption when writing an OData message.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientMessageReaderSettingsShim.ShouldIncludeAnnotation">
            <summary>
            Func to evaluate whether an instance annotation should be read or skipped by the reader. The func should return true if the instance annotation should
            be read and false if the instance annotation should be skipped.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataLoadNavigationPropertyMaterializer">
            <summary>
            Materializer for LoadProperty API call for navigation properties.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer">
            <summary>
            Materializes feeds and entities from an ODataReader
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataEntityMaterializer">
            <summary>
            Used to materialize entities from a <see cref="T:Microsoft.Data.OData.ODataEntry"/> objects.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataMaterializer">
            <summary>
            Use this class to materialize objects provided from an <see cref="T:Microsoft.Data.OData.ODataMessageReader"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMaterializer.EmptyLinks">
            <summary>Empty navigation links collection</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMaterializer.EmptyProperties">
            <summary>Empty property collection</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMaterializer.nextLinkTable">
            <summary>Collection->Next Link Table for nested links</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMaterializer.collectionValueMaterializationPolicy">
            <summary>The collection value materialization policy. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMaterializer.complexValueMaterializerPolicy">
            <summary>The complex value materializer policy. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMaterializer.primitiveValueMaterializationPolicy">
            <summary> The materialization policy used to materialize primitive values. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMaterializer.lazyPrimitivePropertyConverter">
            <summary>The converter to use when assigning values of primitive properties. </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.#ctor(System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Type)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataMaterializer"/> class.
            </summary>
            <param name="materializerContext">The materializer context.</param>
            <param name="expectedType">The expected type.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.CreateMaterializerForMessage(Microsoft.Data.OData.IODataResponseMessage,System.Data.Services.Client.ResponseInfo,System.Type,System.Data.Services.Client.QueryComponents,System.Data.Services.Client.ProjectionPlan,Microsoft.Data.OData.ODataPayloadKind)">
            <summary>
            Creates an <see cref="T:System.Data.Services.Client.Materialization.ODataMaterializer"/> for a response.
            </summary>
            <param name="responseMessage">The response message.</param>
            <param name="responseInfo">The response context.</param>
            <param name="materializerType">The type to materialize.</param>
            <param name="queryComponents">The query components for the request.</param>
            <param name="plan">The projection plan.</param>
            <param name="payloadKind">expected payload kind.</param>
            <returns>A materializer specialized for the given response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.Read">
            <summary>Reads the next value from the input content.</summary>
            <returns>true if another value is available after reading; false otherwise.</returns>
            <remarks>
            After invocation, the currentValue field (and CurrentValue property) will
            reflect the value materialized from the parser; possibly null if the
            result is true (for null values); always null if the result is false.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.Dispose">
            <summary>
            Disposes the materializer
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.ClearLog">
            <summary>Clears the materialization log of activity.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.ApplyLogToContext">
            <summary>Applies the materialization log to the context.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.CreateODataMessageReader(Microsoft.Data.OData.IODataResponseMessage,System.Data.Services.Client.ResponseInfo,Microsoft.Data.OData.ODataPayloadKind@)">
            <summary>
            Creates an <see cref="T:Microsoft.Data.OData.ODataMessageReader"/> for a given message and context using
            WCF DS client settings.
            </summary>
            <param name="responseMessage">The response message</param>
            <param name="responseInfo">The response context</param>
            <param name="payloadKind">Type of the message.</param>
            <returns>The message reader.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.VerifyNotDisposed">
            <summary>
            Verifies that the object is not disposed.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.ReadImplementation">
            <summary>
            Implementation of <see cref="M:System.Data.Services.Client.Materialization.ODataMaterializer.Read"/>.
            </summary>
            <returns>Return value of <see cref="M:System.Data.Services.Client.Materialization.ODataMaterializer.Read"/></returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializer.OnDispose">
            <summary>
            Called when IDisposable.Dispose is called.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.CurrentValue">
            <summary>Current value being materialized; possibly null.</summary>
            <remarks>
            This will typically be an entity if <see cref="P:System.Data.Services.Client.Materialization.ODataMaterializer.CurrentEntry"/>
            is assigned, but may contain a string for example if a top-level
            primitive of type string is found.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.CurrentFeed">
            <summary>Feed being materialized; possibly null.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.CurrentEntry">
            <summary>Entry being materialized; possibly null.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.NextLinkTable">
            <summary>Table storing the next links assoicated with the current payload</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.IsEndOfStream">
            <summary>Whether we have finished processing the current data stream.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.IsCountable">
            <summary>
            Returns true if the underlying object used for counting is available
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.CountValue">
            <summary>
            The count tag's value, if requested
            </summary>
            <returns>The count value returned from the server</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.MaterializeEntryPlan">
            <summary>Function to materialize an entry and produce a value.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.MaterializerContext">
            <summary>
            Gets the materializer context
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.IsDisposed">
            <summary>
            Returns true if the materializer has been disposed
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.ExpectedType">
            <summary>
            Gets the expected type.
            </summary>
            <value>
            The expected type.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.CollectionValueMaterializationPolicy">
            <summary>
            Gets the collection value materialization policy.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.ComplexValueMaterializationPolicy">
            <summary>
            Gets the complex value materialization policy.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.PrimitivePropertyConverter">
            <summary>
            The converter to use when assigning values of primitive properties.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.PrimitiveValueMaterializier">
            <summary>
            The policy used to materialize primitive values.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializer.Format">
            <summary>
            The format of the response being materialized.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataEntityMaterializer.currentValue">
            <summary>The value of the current materialized entity.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataEntityMaterializer.materializeEntryPlan">
            <summary>The materializer plan.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataEntityMaterializer.entryValueMaterializerPolicy">
            <summary> The entry value materializer policy. </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.#ctor(System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.Materialization.EntityTrackingAdapter,System.Data.Services.Client.QueryComponents,System.Type,System.Data.Services.Client.ProjectionPlan)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataEntityMaterializer"/> class.
            </summary>
            <param name="materializerContext">The materializer context.</param>
            <param name="entityTrackingAdapter">The entity tracking adapter.</param>
            <param name="queryComponents">The query components.</param>
            <param name="expectedType">The expected type.</param>
            <param name="materializeEntryPlan">The materialize entry plan.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.EnumerateAsElementType``1(System.Collections.IEnumerable)">
            <summary>Enumerates casting each element to a type.</summary>
            <typeparam name="T">Element type to enumerate over.</typeparam>
            <param name="source">Element source.</param>
            <returns>
            An IEnumerable&lt;T&gt; that iterates over the specified <paramref name="source"/>.
            </returns>
            <remarks>
            This method should be unnecessary with .NET 4.0 covariance support.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.EnumerateAsElementTypeInternal``1(System.Collections.IEnumerable)">
            <summary>Enumerates casting each element to a type.</summary>
            <typeparam name="T">Element type to enumerate over.</typeparam>
            <param name="source">Element source.</param>
            <returns>
            An IEnumerable&lt;T&gt; that iterates over the specified <paramref name="source"/>.
            </returns>
            <remarks>
            This method should be unnecessary with .NET 4.0 covariance support.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ListAsElementType``2(System.Data.Services.Client.Materialization.ODataEntityMaterializer,System.Collections.Generic.IEnumerable{``0})">
            <summary>Creates a list to a target element type.</summary>
            <param name="materializer">Materializer used to flow link tracking.</param>
            <typeparam name="T">Element type to enumerate over.</typeparam>
            <typeparam name="TTarget">Element type for list.</typeparam>
            <param name="source">Element source.</param>
            <returns>
            An IEnumerable&lt;T&gt; that iterates over the specified <paramref name="source"/>.
            </returns>
            <remarks>
            This method should be unnecessary with .NET 4.0 covariance support.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.CreatePlanForDirectMaterialization(System.Type)">
            <summary>Creates an entry materialization plan that is payload-driven.</summary>
            <param name="lastSegmentType">Segment type for the entry to materialize (typically last of URI in query).</param>
            <returns>A payload-driven materialization plan.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.CreatePlanForShallowMaterialization(System.Type)">
            <summary>Creates an entry materialization plan that is payload-driven and does not traverse expanded links.</summary>
            <param name="lastSegmentType">Segment type for the entry to materialize (typically last of URI in query).</param>
            <returns>A payload-driven materialization plan.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionCheckValueForPathIsNull(System.Data.Services.Client.Materialization.MaterializerEntry,System.Type,System.Data.Services.Client.ProjectionPath)">
            <summary>Checks whether the entity on the specified <paramref name="path"/> is null.</summary>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="path">Path to pull value for.</param>
            <returns>Whether the specified <paramref name="path"/> is null.</returns>
            <remarks>
            This method will not instantiate entity types on the path.
            Note that if the target is a collection, the result is always false,
            as the model does not allow null feeds (but instead gets an empty
            collection, possibly with continuation tokens and such).
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionSelect(System.Data.Services.Client.Materialization.ODataEntityMaterializer,System.Data.Services.Client.Materialization.MaterializerEntry,System.Type,System.Type,System.Data.Services.Client.ProjectionPath,System.Func{System.Object,System.Object,System.Type,System.Object})">
            <summary>Provides support for Select invocations for projections.</summary>
            <param name="materializer">Materializer under which projection is taking place.</param>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="resultType">Expected result type.</param>
            <param name="path">Path to traverse.</param>
            <param name="selector">Selector callback.</param>
            <returns>An enumerable with the select results.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionGetEntry(System.Data.Services.Client.Materialization.MaterializerEntry,System.String)">
            <summary>Provides support for getting payload entries during projections.</summary>
            <param name="entry">Entry to get sub-entry from.</param>
            <param name="name">Name of sub-entry.</param>
            <returns>The sub-entry (never null).</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionGetEntryOrNull(System.Data.Services.Client.Materialization.MaterializerEntry,System.String)">
            <summary>Provides support for getting payload entries or null during projections.</summary>
            <param name="entry">Entry to get sub-entry from.</param>
            <param name="name">Name of sub-entry.</param>
            <returns>The sub-entry or null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionInitializeEntity(System.Data.Services.Client.Materialization.ODataEntityMaterializer,System.Data.Services.Client.Materialization.MaterializerEntry,System.Type,System.Type,System.String[],System.Func{System.Object,System.Object,System.Type,System.Object}[])">
            <summary>Initializes a projection-driven entry (with a specific type and specific properties).</summary>
            <param name="materializer">Materializer under which projection is taking place.</param>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="resultType">Expected result type.</param>
            <param name="properties">Properties to materialize.</param>
            <param name="propertyValues">Functions to get values for functions.</param>
            <returns>The initialized entry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionEnsureEntryAvailableOfType(System.Data.Services.Client.Materialization.ODataEntityMaterializer,System.Data.Services.Client.Materialization.MaterializerEntry,System.Type)">
            <summary>
            Ensures that an entry of <paramref name="requiredType"/> is
            available on the specified <paramref name="entry"/>.
            </summary>
            <param name="materializer">Materilizer used for logging. </param>
            <param name="entry">Entry to ensure.</param>
            <param name="requiredType">Required type.</param>
            <remarks>
            As the 'Projection' suffix suggests, this method should only
            be used during projection operations; it purposefully avoid
            "source tree" type usage and POST reply entry resolution.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.DirectMaterializePlan(System.Data.Services.Client.Materialization.ODataEntityMaterializer,System.Data.Services.Client.Materialization.MaterializerEntry,System.Type)">
            <summary>Materializes an entry with no special selection.</summary>
            <param name="materializer">Materializer under which materialization should take place.</param>
            <param name="entry">Entry with object to materialize.</param>
            <param name="expectedEntryType">Expected type for the entry.</param>
            <returns>The materialized instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ShallowMaterializePlan(System.Data.Services.Client.Materialization.ODataEntityMaterializer,System.Data.Services.Client.Materialization.MaterializerEntry,System.Type)">
            <summary>Materializes an entry without including in-lined expanded links.</summary>
            <param name="materializer">Materializer under which materialization should take place.</param>
            <param name="entry">Entry with object to materialize.</param>
            <param name="expectedEntryType">Expected type for the entry.</param>
            <returns>The materialized instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionValueForPath(System.Data.Services.Client.Materialization.MaterializerEntry,System.Type,System.Data.Services.Client.ProjectionPath)">
            <summary>Projects a simple value from the specified <paramref name="path"/>.</summary>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="path">Path to pull value for.</param>
            <returns>The value for the specified <paramref name="path"/>.</returns>
            <remarks>
            This method will not instantiate entity types, except to satisfy requests
            for payload-driven feeds or leaf entities.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ClearLog">
            <summary>Clears the materialization log of activity.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ApplyLogToContext">
            <summary>Applies the materialization log to the context.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.PropagateContinuation``1(System.Collections.Generic.IEnumerable{``0},System.Data.Services.Client.DataServiceCollection{``0})">
            <summary>Helper method for constructor of DataServiceCollection.</summary>
            <typeparam name="T">Element type for collection.</typeparam>
            <param name="from">The enumerable which has the continuation on it.</param>
            <param name="to">The DataServiceCollection to apply the continuation to.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ReadImplementation">
            <summary>
            Implementation of Read/>.
            </summary>
            <returns>
            Return value of Read/>
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ReadNextFeedOrEntry">
            <summary>
            Reads the next feed or entry.
            </summary>
            <returns>True if an entry was read, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.CheckEntryToAccessNotNull(System.Data.Services.Client.Materialization.MaterializerEntry,System.String)">
            <summary>
            Checks that the specified <paramref name="entry"/> isn't null.
            </summary>
            <param name="entry">Entry to check.</param>
            <param name="name">Name of entry being accessed.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.CreatePlan(System.Data.Services.Client.QueryComponents,System.Boolean)">
            <summary>Creates an entry materialization plan for a given projection.</summary>
            <param name="queryComponents">Query components for plan to materialize.</param>
            <param name="autoNullPropagation">Auto nulls check in expand paths.</param>
            <returns>A materialization plan.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.MaterializeToList(System.Data.Services.Client.Materialization.ODataEntityMaterializer,System.Collections.IEnumerable,System.Type,System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataEntry})">
            <summary>Materializes the result of a projection into a list.</summary>
            <param name="materializer">Materializer to use for the operation.</param>
            <param name="list">Target list.</param>
            <param name="nestedExpectedType">Expected type for nested object.</param>
            <param name="entries">Entries to materialize from.</param>
            <remarks>
            This method supports projections and as such does shallow payload-driven
            materialization of entities.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.GetPropertyOrThrow(System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataNavigationLink},System.String)">
            <summary>Gets a property from the specified <paramref name="links"/> list, throwing if not found.</summary>
            <param name="links">List to get value from.</param>
            <param name="propertyName">Property name to look up.</param>
            <returns>The specified property (never null).</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.ProjectionGetMaterializerEntry(System.Data.Services.Client.Materialization.MaterializerEntry,System.String)">
            <summary>
            Provides support for getting payload entries during projections.
            </summary>
            <param name="entry">Entry to get sub-entry from.</param>
            <param name="name">Name of sub-entry.</param>
            <returns>The sub-entry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializer.MergeLists(System.Data.Services.Client.Materialization.MaterializerEntry,System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Collections.IEnumerable,System.Uri,System.Data.Services.Client.ProjectionPlan)">
            <summary>Merges a list into the property of a given <paramref name="entry"/>.</summary>
            <param name="entry">Entry to merge into.</param>
            <param name="property">Property on entry to merge into.</param>
            <param name="list">List of materialized values.</param>
            <param name="nextLink">Next link for feed from which the materialized values come from.</param>
            <param name="plan">Projection plan for the list.</param>
            <remarks>
            This method will handle entries that shouldn't be updated correctly.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntityMaterializer.EntityTrackingAdapter">
            <summary>
            Gets the Entity Materializer Context
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntityMaterializer.TargetInstance">
            <summary>
            Target instance that the materializer expects to update.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntityMaterializer.CurrentValue">
            <summary>
            Current value being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntityMaterializer.MaterializeEntryPlan">
            <summary>
            Function to materialize an entry and produce a value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntityMaterializer.EntryValueMaterializationPolicy">
            <summary>
            Gets the entry value materialization policy.
            </summary>
            <value>
            The entry value materialization policy.
            </value>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.feedEntryAdapter">
            <summary>The enty or feed reader.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.messageReader">
            <summary>The message reader.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.ODataReaderWrapper,System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.Materialization.EntityTrackingAdapter,System.Data.Services.Client.QueryComponents,System.Type,System.Data.Services.Client.ProjectionPlan)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer"/> class.
            </summary>
            <param name="odataMessageReader">The odata message reader.</param>
            <param name="reader">The reader.</param>
            <param name="materializerContext">The materializer context.</param>
            <param name="entityTrackingAdapter">The entity tracking adapter.</param>
            <param name="queryComponents">The query components.</param>
            <param name="expectedType">The expected type.</param>
            <param name="materializeEntryPlan">The materialize entry plan.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.ParseSingleEntityPayload(Microsoft.Data.OData.IODataResponseMessage,System.Data.Services.Client.ResponseInfo,System.Type)">
            <summary>
            This method is for parsing CUD operation payloads which should contain
            1 a single entry
            2 An Error
            </summary>
            <param name="message">the message for the payload</param>
            <param name="responseInfo">The current ResponseInfo object</param>
            <param name="expectedType">The expected type</param>
            <returns>the MaterializerEntry that was read</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.OnDispose">
            <summary>
            Called when IDisposable.Dispose is called.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.ReadNextFeedOrEntry">
            <summary>
            Reads the next feed or entry.
            </summary>
            <returns>
            True if an entry was read, otherwise false
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.CurrentFeed">
            <summary>
            Feed being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.CurrentEntry">
            <summary>
            Entry being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.IsEndOfStream">
            <summary>
            Whether we have finished processing the current data stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.CountValue">
            <summary>
            The count tag's value, if requested
            </summary>
            <returns>The count value returned from the server</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.IsCountable">
            <summary>
            Returns true if the underlying object used for counting is available
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.IsDisposed">
            <summary>
            Returns true if the materializer has been disposed
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderEntityMaterializer.Format">
            <summary>
            The format of the response being materialized.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataLoadNavigationPropertyMaterializer.responseInfo">
            <summary>
            Response Info object.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataLoadNavigationPropertyMaterializer.items">
            <summary>
            Items that have been read from the feed or entry.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataLoadNavigationPropertyMaterializer.iteration">
            <summary>
            Iteration of the entity collection reader.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataLoadNavigationPropertyMaterializer.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.ODataReaderWrapper,System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.Materialization.EntityTrackingAdapter,System.Data.Services.Client.QueryComponents,System.Type,System.Data.Services.Client.ProjectionPlan,System.Data.Services.Client.LoadPropertyResponseInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataLoadNavigationPropertyMaterializer"/> class.
            </summary>
            <param name="odataMessageReader">The odata message reader.</param>
            <param name="reader">The reader.</param>
            <param name="materializerContext">The materializer context.</param>
            <param name="entityTrackingAdapter">The entity tracking adapter.</param>
            <param name="queryComponents">The query components.</param>
            <param name="expectedType">The expected type.</param>
            <param name="materializeEntryPlan">The materialize entry plan.</param>
            <param name="responseInfo">LoadProperty Response Info object.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataLoadNavigationPropertyMaterializer.ReadImplementation">
            <summary>
            Implementation of Read/>.
            </summary>
            <returns>
            Return value of Read/>
            </returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientRequestMessageArgs">
            <summary>
            Arguments for creating an instance of DataServiceClientRequestMessage.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestMessageArgs.actualMethod">
            <summary> The actual method. </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessageArgs.#ctor(System.String,System.Uri,System.Boolean,System.Boolean,System.Collections.Generic.IDictionary{System.String,System.String})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientRequestMessageArgs"/> class.
            </summary>
            <param name="method">Method of the request.</param>
            <param name="requestUri">The Request Uri.</param>
            <param name="useDefaultCredentials">True if the default credentials need to be sent with the request. Otherwise false.</param>
            <param name="usePostTunneling">True if the request message must use POST verb for the request and pass the actual verb in X-HTTP-Method header, otherwise false.</param>
            <param name="headers">The set of headers for the request.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessageArgs.Method">
            <summary>
            Gets the method.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessageArgs.RequestUri">
            <summary>
            Gets the request URI.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessageArgs.UsePostTunneling">
            <summary>
            Returns whether the request message should use Post-Tunneling.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessageArgs.Headers">
            <summary>
            Gets the headers.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessageArgs.ActualMethod">
            <summary>
            Gets the actual method. Indicates correct method to use in the post tunneling case.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessageArgs.UseDefaultCredentials">
            <summary>
            Gets a System.Boolean value that controls whether default credentials are sent with requests.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.HttpStack">
            <summary>Represents the type of HTTP implementation to use when accessing the data service.Supported only by the WCF Data Services 5.0 client for Silverlight.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpStack.Auto">
            <summary>
            Automatically choose the HTTP stack
            When possible XmlHttp stack will be used, otherwise the Client stack will be used
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.MessageReaderSettingsArgs">
            <summary>
            Arguments used to configure the odata message reader settings.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.MessageReaderSettingsArgs.#ctor(Microsoft.Data.OData.ODataMessageReaderSettingsBase)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.MessageReaderSettingsArgs"/> class.
            </summary>
            <param name="settings">The settings.</param>
        </member>
        <member name="P:System.Data.Services.Client.MessageReaderSettingsArgs.Settings">
            <summary>
            Gets the settings.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.MessageWriterSettingsArgs">
            <summary>
            Arguments used to configure the odata message writer settings.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.MessageWriterSettingsArgs.#ctor(Microsoft.Data.OData.ODataMessageWriterSettingsBase)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.MessageWriterSettingsArgs"/> class.
            </summary>
            <param name="settings">The settings.</param>
        </member>
        <member name="P:System.Data.Services.Client.MessageWriterSettingsArgs.Settings">
            <summary>
            Gets the settings.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientConfigurations">
            <summary>
            Configurations on the behavior of the Client.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientConfigurations.#ctor(System.Object)">
            <summary>
            Creates a data service client configurations class
            </summary>
            <param name="sender"> The sender for the Reading Atom event.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientConfigurations.ResponsePipeline">
            <summary>
            Gets the response configuration pipeline.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientConfigurations.RequestPipeline">
            <summary>
            Gets the request pipeline.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy">
            <summary>
            Use this class to materialize objects provided from an <see cref="T:Microsoft.Data.OData.ODataMessageReader"/>.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.MaterializationPolicy">
            <summary>
            Class responsible for materializing from OData to Objects
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializationPolicy.CreateNewInstance(Microsoft.Data.Edm.IEdmTypeReference,System.Type)">
            <summary>
            Creates the specified edm type.
            </summary>
            <param name="edmTypeReference">Type of the edm.</param>
            <param name="type">The type.</param>
            <remarks>In the future this class will have Materialize and Update will be adding this in upcoming changes</remarks>
            <returns>A created object</returns>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.materializerContext">
            <summary> The materializer context. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.complexValueMaterializationPolicy">
            <summary> The complex value materialization policy. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.primitiveValueMaterializationPolicy">
            <summary> The primitive value materialization policy. </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.#ctor(System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy"/> class.
            </summary>
            <param name="context">The context.</param>
            <param name="primitivePolicy">The primitive policy.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.CreateCollectionPropertyInstance(Microsoft.Data.OData.ODataProperty,System.Type)">
            <summary>
            Creates Collection instance of store Collection items.
            </summary>
            <param name="collectionProperty">ODataProperty instance representing the Collection as seen in the atom payload.</param>
            <param name="userCollectionType">CLR type of the Collection as defined by the user.</param>
            <returns>Newly created Collection instance. Never null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.CreateCollectionInstance(Microsoft.Data.Edm.IEdmCollectionTypeReference,System.Type)">
            <summary>
            Creates the collection instance.
            </summary>
            <param name="edmCollectionTypeReference">The edm collection type reference.</param>
            <param name="clientCollectionType">Type of the client collection.</param>
            <returns>New Collection Instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.ApplyCollectionDataValues(Microsoft.Data.OData.ODataProperty,System.Object,System.Type,System.Action{System.Object,System.Object})">
            <summary>
            Applies collectionValue item to the provided <paramref name="collectionInstance"/>.
            </summary>
            <param name="collectionProperty">Atom property containing materialized Collection items.</param>
            <param name="collectionInstance">Collection instance. Must implement ICollection&lt;T&gt; where T is either primitive or complex type (not an entity).</param>
            <param name="collectionItemType">Type of items in the Collection. Note: this could be calculated from collectionInstance but we already have it in upstream methods.</param>
            <param name="addValueToBackingICollectionInstance">Action called actually add a Collection item to <paramref name="collectionInstance" /></param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.ApplyCollectionDataValues(System.Collections.IEnumerable,System.String,System.Object,System.Type,System.Action{System.Object,System.Object})">
            <summary>
            Applies the collection data values to a collection instance.
            </summary>
            <param name="items">The items.</param>
            <param name="wireTypeName">Name of the wire type.</param>
            <param name="collectionInstance">The collection instance.</param>
            <param name="collectionItemType">Type of the collection item.</param>
            <param name="addValueToBackingICollectionInstance">The add value to backing I collection instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.CreateCollectionInstance(Microsoft.Data.Edm.IEdmCollectionTypeReference,System.Type,System.Func{System.String})">
            <summary>
            Creates Collection instance of store Collection items.
            </summary>
            <param name="edmCollectionTypeReference">The edm collection type reference.</param>
            <param name="clientCollectionType">Type of the client collection.</param>
            <param name="error">Error to throw.</param>
            <returns>
            Newly created Collection instance. Never null.
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.CollectionValueMaterializationPolicy.ComplexValueMaterializationPolicy">
            <summary>
            Gets the complex value materialization policy.
            </summary>
            <value>
            The complex value materialization policy.
            </value>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ComplexValueMaterializationPolicy">
            <summary>
            Use this class to materialize objects provided from an <see cref="T:System.Data.Services.Client.Materialization.ComplexValueMaterializationPolicy"/>.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy">
            <summary>
            Contains logic on how to materialize properties into an instance
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.collectionValueMaterializationPolicy">
            <summary> The collection value materialization policy. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.lazyPrimitivePropertyConverter">
            <summary> The primitive property converter. </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.#ctor(System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.SimpleLazy{System.Data.Services.Client.Materialization.PrimitivePropertyConverter})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ComplexValueMaterializationPolicy"/> class.
            </summary>
            <param name="materializerContext">The materializer context.</param>
            <param name="lazyPrimitivePropertyConverter">The lazy primitive property converter.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.MaterializePrimitiveDataValue(System.Type,Microsoft.Data.OData.ODataProperty)">
            <summary>Materializes a primitive value. No op for non-primitive values.</summary>
            <param name="type">Type of value to set.</param>
            <param name="property">Property holding value.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.ApplyDataValues(System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataProperty},System.Object)">
            <summary>
            Applies the values of the specified <paramref name="properties"/> to a given <paramref name="instance"/>.
            </summary>
            <param name="type">Type to which properties will be applied.</param>
            <param name="properties">Properties to assign to the specified <paramref name="instance"/>.</param>
            <param name="instance">Instance on which values will be applied.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.ApplyDataValue(System.Data.Services.Client.Metadata.ClientTypeAnnotation,Microsoft.Data.OData.ODataProperty,System.Object)">
            <summary>Applies a data value to the specified <paramref name="instance"/>.</summary>
            <param name="type">Type to which a property value will be applied.</param>
            <param name="property">Property with value to apply.</param>
            <param name="instance">Instance on which value will be applied.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.MaterializeDataValues(System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataProperty},System.Boolean)">
            <summary>
            Materializes the primitive data values in the given list of <paramref name="values"/>.
            </summary>
            <param name="actualType">Actual type for properties being materialized.</param>
            <param name="values">List of values to materialize.</param>
            <param name="ignoreMissingProperties">
            Whether properties missing from the client types should be ignored.
            </param>
            <remarks>
            Values are materialized in-place withi each <see cref="T:Microsoft.Data.OData.ODataProperty"/>
            instance.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.CollectionValueMaterializationPolicy">
            <summary>
            Gets the collection value materialization policy.
            </summary>
            <value>
            The collection value materialization policy.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.PrimitivePropertyConverter">
            <summary>
            Gets the primitive property converter.
            </summary>
            <value>
            The primitive property converter.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.StructuralValueMaterializationPolicy.MaterializerContext">
            <summary>
            Gets the materializer context.
            </summary>
            <value>
            The materializer context.
            </value>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ComplexValueMaterializationPolicy.#ctor(System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.SimpleLazy{System.Data.Services.Client.Materialization.PrimitivePropertyConverter})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ComplexValueMaterializationPolicy"/> class.
            </summary>
            <param name="materializerContext">The materializer context.</param>
            <param name="lazyPrimitivePropertyConverter">The lazy primitive property converter.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ComplexValueMaterializationPolicy.MaterializeComplexTypeProperty(System.Type,Microsoft.Data.OData.ODataComplexValue)">
            <summary>Materializes a complex type property.</summary>
            <param name="propertyType">Type of the complex type to set.</param>
            <param name="complexValue">The OData complex value.</param>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.EntityTrackingAdapter">
            <summary>
            Determines if there is an existing entity or whether a new one is created
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.EntityTrackingAdapter.targetInstance">
            <summary>Target instance that the materializer expects to update.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntityTrackingAdapter.#ctor(System.Data.Services.Client.EntityTrackerBase,System.Data.Services.Client.MergeOption,System.Data.Services.Client.ClientEdmModel,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.EntityTrackingAdapter"/> class.
            </summary>
            <param name="entityTracker">The entity tracker.</param>
            <param name="mergeOption">The merge option.</param>
            <param name="model">The model.</param>
            <param name="context">The context.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntityTrackingAdapter.TryResolveExistingEntity(System.Data.Services.Client.Materialization.MaterializerEntry,System.Type)">
            <summary>Resolved or creates an instance on the specified <paramref name="entry"/>.</summary>
            <param name="entry">Entry on which to resolve or create an instance.</param>
            <param name="expectedEntryType">Expected type for the <paramref name="entry"/>.</param>
            <remarks>
            After invocation, the ResolvedObject value of the <paramref name="entry"/>
            will be assigned, along with the ActualType value.
            </remarks>
            <returns>True if an existing entity is found.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntityTrackingAdapter.TryResolveAsExistingEntry(System.Data.Services.Client.Materialization.MaterializerEntry,System.Type)">
            <summary>
            Tries to resolve the specified entry as an entry that has already been created in this materialization session or is already in the context.
            </summary>
            <param name="entry">Entry to resolve.</param>
            <param name="expectedEntryType">Expected type of the entry.</param>
            <returns>True if the entry was resolved, otherwise False.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntityTrackingAdapter.TryResolveAsTarget(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>Tries to resolve the object as the target one in a POST refresh.</summary>
            <param name="entry">Entry to resolve.</param>
            <returns>true if the entity was resolved; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntityTrackingAdapter.TryResolveFromContext(System.Data.Services.Client.Materialization.MaterializerEntry,System.Type)">
            <summary>Tries to resolve the object as one from the context (only if tracking is enabled).</summary>
            <param name="entry">Entry to resolve.</param>
            <param name="expectedEntryType">Expected entry type for the specified <paramref name="entry"/>.</param>
            <returns>true if the entity was resolved; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntityTrackingAdapter.TryResolveAsCreated(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>Tries to resolve the object from those created in this materialization session.</summary>
            <param name="entry">Entry to resolve.</param>
            <returns>true if the entity was resolved; false otherwise.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.EntityTrackingAdapter.MergeOption">
            <summary>
            Gets the value of the MergeOption
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.EntityTrackingAdapter.Context">
            <summary>
            Gets the Context
            </summary>
            <remarks>Implementation Note, only used in when a new DataServiceCollection,
             would like to remove this dependency but would need to change projection
             plan, might happen in a subsequent refactor
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.EntityTrackingAdapter.MaterializationLog">
            <summary>
            Gets the materialization log.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.EntityTrackingAdapter.EntityTracker">
            <summary>
            Gets the entity tracker.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.EntityTrackingAdapter.Model">
            <summary>
            Gets the model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.EntityTrackingAdapter.TargetInstance">
            <summary>
            Target instance that the materializer expects to update.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy">
            <summary>
            Used to materialize entities from an <see cref="T:Microsoft.Data.OData.ODataEntry"/> to an object.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.nextLinkTable">
            <summary>Collection->Next Link Table for nested links</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.#ctor(System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.Materialization.EntityTrackingAdapter,System.Data.Services.Client.SimpleLazy{System.Data.Services.Client.Materialization.PrimitivePropertyConverter},System.Collections.Generic.Dictionary{System.Collections.IEnumerable,System.Data.Services.Client.DataServiceQueryContinuation})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy"/> class.
            </summary>
            <param name="context">The context.</param>
            <param name="entityTrackingAdapter">The entity tracking adapter.</param>
            <param name="lazyPrimitivePropertyConverter">The lazy primitive property converter.</param>
            <param name="nextLinkTable">The next link table.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ValidatePropertyMatch(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,Microsoft.Data.OData.ODataNavigationLink)">
            <summary>
            Validates the specified <paramref name="property"/> matches
            the parsed <paramref name="link"/>.
            </summary>
            <param name="property">Property as understood by the type system.</param>
            <param name="link">Property as parsed.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ValidatePropertyMatch(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,Microsoft.Data.OData.ODataProperty)">
            <summary>
            Validates the specified <paramref name="property"/> matches
            the parsed <paramref name="atomProperty"/>.
            </summary>
            <param name="property">Property as understood by the type system.</param>
            <param name="atomProperty">Property as parsed.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ValidatePropertyMatch(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,Microsoft.Data.OData.ODataNavigationLink,System.Data.Services.Client.ClientEdmModel,System.Boolean)">
            <summary>
            Validates the specified <paramref name="property"/> matches
            the parsed <paramref name="link"/>.
            </summary>
            <param name="property">Property as understood by the type system.</param>
            <param name="link">Property as parsed.</param>
            <param name="model">Client Model.</param>
            <param name="performEntityCheck">whether to do the entity check or not.</param>
            <returns>The type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ValidatePropertyMatch(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,Microsoft.Data.OData.ODataProperty,System.Data.Services.Client.ClientEdmModel,System.Boolean)">
            <summary>
            Validates the specified <paramref name="property"/> matches
            the parsed <paramref name="atomProperty"/>.
            </summary>
            <param name="property">Property as understood by the type system.</param>
            <param name="atomProperty">Property as parsed.</param>
            <param name="model">Client model.</param>
            <param name="performEntityCheck">whether to do the entity check or not.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.Materialize(System.Data.Services.Client.Materialization.MaterializerEntry,System.Type,System.Boolean)">
            <summary>Materializes the specified <paramref name="entry"/>.</summary>
            <param name="entry">Entry with object to materialize.</param>
            <param name="expectedEntryType">Expected type for the entry.</param>
            <param name="includeLinks">Whether links that are expanded should be materialized.</param>
            <remarks>This is a payload-driven materialization process.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ApplyItemsToCollection(System.Data.Services.Client.Materialization.MaterializerEntry,System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Collections.IEnumerable,System.Uri,System.Data.Services.Client.ProjectionPlan,System.Boolean)">
            <summary>
            Applies the values of the <paramref name="items"/> enumeration to the
            <paramref name="property"/> of the specified <paramref name="entry"/>.
            </summary>
            <param name="entry">Entry with collection to be modified.</param>
            <param name="property">Collection property on the entry.</param>
            <param name="items">Values to apply onto the collection.</param>
            <param name="nextLink">Next link for collection continuation.</param>
            <param name="continuationPlan">Projection plan for collection continuation.</param>
            <param name="isContinuation">Whether this is a continuation request.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.FoundNextLinkForCollection(System.Collections.IEnumerable,System.Uri,System.Data.Services.Client.ProjectionPlan)">
            <summary>Records the fact that a rel='next' link was found for the specified <paramref name="collection"/>.</summary>
            <param name="collection">Collection to add link to.</param>
            <param name="link">Link (possibly null).</param>
            <param name="plan">Projection plan for the collection (null allowed only if link is null).</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.FoundNextLinkForUnmodifiedCollection(System.Collections.IEnumerable)">
            <summary>Records the fact that a <paramref name="collection"/> was found but won't be modified.</summary>
            <param name="collection">Collection to add link to.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ResolveByCreatingWithType(System.Data.Services.Client.Materialization.MaterializerEntry,System.Type)">
            <summary>"Resolved" the entity in the <paramref name="entry"/> by instantiating it.</summary>
            <param name="entry">Entry to resolve.</param>
            <param name="type">Type to create.</param>
            <remarks>
            After invocation, entry.ResolvedObject is exactly of type <paramref name="type"/>.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ValidateCollectionElementTypeIsItemType(System.Type,System.Type)">
            <summary>
            Matches the given item type with the corresponding collection element type.
            </summary>
            <param name="itemType">Item type.</param>
            <param name="collectionElementType">Collection element type.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ApplyLinkProperties(System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Materializes the link properties if any with the url in the response payload
            </summary>
            <param name="actualType">Actual client type that is getting materialized.</param>
            <param name="entry">MaterializerEntry instance containing all the links that came in the response.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.PopulateCollectionProperty(System.Data.Services.Client.Materialization.MaterializerEntry,System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Collections.Generic.IEnumerable{System.Object},System.Uri,System.Data.Services.Client.ProjectionPlan)">
            <summary>
            Populates the collection property on the entry's resolved object with the given items enumerator.
            </summary>
            <param name="entry">Entry with collection to be modified.</param>
            <param name="property">Collection property on the entry.</param>
            <param name="items">Values to apply onto the collection.</param>
            <param name="nextLink">Next link for collection continuation.</param>
            <param name="continuationPlan">Projection plan for collection continuation.</param>
            <returns>Collection instance that was populated.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.GetOrCreateCollectionProperty(System.Object,System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Boolean)">
            <summary>
            Gets or creates a collection property on the specified <paramref name="instance"/>.
            </summary>
            <param name="instance">Instance on which to get/create the collection.</param>
            <param name="property">Collection property on the <paramref name="instance"/>.</param>
            <param name="forLoadProperty">Is this collection being created for LoadProperty scenario.</param>
            <returns>
            The collection corresponding to the specified <paramref name="property"/>;
            never null.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.ApplyFeedToCollection(System.Data.Services.Client.Materialization.MaterializerEntry,System.Data.Services.Client.Metadata.ClientPropertyAnnotation,Microsoft.Data.OData.ODataFeed,System.Boolean)">
            <summary>
            Applies the values of a nested <paramref name="feed"/> to the collection
            <paramref name="property"/> of the specified <paramref name="entry"/>.
            </summary>
            <param name="entry">Entry with collection to be modified.</param>
            <param name="property">Collection property on the entry.</param>
            <param name="feed">Values to apply onto the collection.</param>
            <param name="includeLinks">Whether links that are expanded should be materialized.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.MaterializeResolvedEntry(System.Data.Services.Client.Materialization.MaterializerEntry,System.Boolean)">
            <summary>Materializes the specified <paramref name="entry"/>.</summary>
            <param name="entry">Entry with object to materialize.</param>
            <param name="includeLinks">Whether links that are expanded should be materialized.</param>
            <remarks>This is a payload-driven materialization process.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.EntryValueMaterializationPolicy.EntityTrackingAdapter">
            <summary>
            Gets the Entity Materializer Context
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataReaderWrapper">
            <summary>
            Contains an odata reader that is wrapped
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataReaderWrapper.reader">
            <summary> The reader. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataReaderWrapper.responsePipeline">
            <summary> The payload reading events. </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderWrapper.#ctor(Microsoft.Data.OData.ODataReader,System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration)">
            <summary>
            Prevents a default instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataReaderWrapper"/> class from being created.
            </summary>
            <param name="reader">The reader.</param>
            <param name="responsePipeline">The data service response pipeling configuration object.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderWrapper.Read">
            <summary>
            Reads the next <see cref="T:Microsoft.Data.OData.ODataItem"/> from the message payload.
            </summary>
            <returns>true if more items were read; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderWrapper.Create(Microsoft.Data.OData.ODataMessageReader,Microsoft.Data.OData.ODataPayloadKind,Microsoft.Data.Edm.IEdmType,System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration)">
            <summary>
            Creates and Wraps an ODataReader for feeds or entries.
            </summary>
            <param name="messageReader">The message reader.</param>
            <param name="messageType">The message type.</param>
            <param name="expectedType">The expected EDM type.</param>
            <param name="responsePipeline">The data service response pipeling configuration object.</param>
            <returns>A reader.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataReaderWrapper.CreateForTest(Microsoft.Data.OData.ODataReader,System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration)">
            <summary>
            Wraps an ODataReader
            </summary>
            <param name="reader">The reader.</param>
            <param name="responsePipeline">The data service response pipeling configuration object.</param>
            <returns>A reader.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderWrapper.State">
            <summary>
            The current state of the reader.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataReaderWrapper.Item">
            <summary>
            The most recent <see cref="T:Microsoft.Data.OData.ODataItem"/> that has been read.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.PrimitivePropertyConverter">
            <summary>
            Converter for primitive values which do not match the client property types. This can happen for two reasons:
              1) The client property types do not exist in the protocol (Uri, XElement, etc)
              2) The values were read using the service's model, and the client types are slightly different (ie float vs double, int vs long).
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.format">
            <summary>The response format the values were originally read from. Required for re-interpreting spatial values correctly.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.lazyGeoJsonFormatter">
            <summary>Geo JSON formatter used for converting spatial values. Lazily created in case no spatial values are ever converted.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.lazyGmlFormatter">
            <summary>Gml formatter used for converting spatial values. Lazily created in case no spatial values are ever converted.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.#ctor(Microsoft.Data.OData.ODataFormat)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.PrimitivePropertyConverter"/> class.
            </summary>
            <param name="format">The response format the values were originally read from. Required for re-interpreting spatial values correctly.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.ConvertPrimitiveValue(System.Object,System.Type)">
            <summary>
            Converts a value to primitive value.
            </summary>
            <param name="value">The value.</param>
            <param name="propertyType">Type of the property.</param>
            <returns>The converted value if the value can be converted</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.ConvertNonSpatialValue(System.Object,System.Type)">
            <summary>
            Converts a non-spatial primitive value to the target type.
            </summary>
            <param name="value">The value to convert.</param>
            <param name="targetType">The target type of the conversion.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.ConvertValueIfNeeded(System.Object,System.Type)">
            <summary>
            Converts the value to the target type if needed.
            </summary>
            <param name="value">The value to convert.</param>
            <param name="targetType">The target type.</param>
            <returns>The converted value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.ConvertSpatialValue(System.Object,System.Type)">
            <summary>
            Converts a spatial value by from geometry to geography or vice versa. Will return the original instance if it is already of the appropriate hierarchy.
            Will throw whatever parsing/format exceptions occur if the sub type is not the same.
            </summary>
            <param name="value">The value to convert.</param>
            <param name="targetType">The target type of the conversion.</param>
            <returns>The original or converted value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitivePropertyConverter.ConvertSpatialValue``2(``0)">
            <summary>
            Converts a spatial value by from geometry to geography or vice versa. Will return the original instance if it is already of the appropriate hierarchy.
            Will throw whatever parsing/format exceptions occur if the sub type is not the same.
            </summary>
            <typeparam name="TIn">The type of the value being converted.</typeparam>
            <typeparam name="TOut">The target type of the conversion.</typeparam>
            <param name="valueToConvert">The value to convert.</param>
            <returns>The original or converted value.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy">
            <summary>
            Creates a policy that is used for materializing Primitive values
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy.context">
            <summary> MaterializerContext used to resolve types for materialization. </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy.lazyPrimitivePropertyConverter">
            <summary>
            primitive property converter used to convert the property have the value has been materialized. </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy.#ctor(System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.SimpleLazy{System.Data.Services.Client.Materialization.PrimitivePropertyConverter})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy"/> class.
            </summary>
            <param name="context">The context.</param>
            <param name="lazyPrimitivePropertyConverter">The lazy primitive property converter.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy.MaterializePrimitiveDataValue(System.Type,System.String,System.Object)">
            <summary>
            Materializes the primitive data value.
            </summary>
            <param name="collectionItemType">Type of the collection item.</param>
            <param name="wireTypeName">Name of the wire type.</param>
            <param name="item">The item.</param>
            <returns>Materialized primitive data value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy.MaterializePrimitiveDataValueCollectionElement(System.Type,System.String,System.Object)">
            <summary>
            Materializes the primitive data value collection element.
            </summary>
            <param name="collectionItemType">The collection item type.</param>
            <param name="wireTypeName">Name of the wire type.</param>
            <param name="item">The item.</param>
            <returns>Materialized primitive collection element value</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy.MaterializePrimitiveDataValue(System.Type,System.String,System.Object,System.Func{System.String},System.Object@)">
            <summary>Materializes a primitive value. No op or non-primitive values.</summary>
            <param name="type">Type of value to set.</param>
            <param name="wireTypeName">Type name from the payload.</param>
            <param name="value">Value of primitive provided by ODL.</param>
            <param name="throwOnNullMessage">The exception message if the value is null.</param>
            <param name="materializedValue">The materialized value.</param>
            <returns>true if the value was set; false if it wasn't (typically because it's a complex value).</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.PrimitiveValueMaterializationPolicy.PrimitivePropertyConverter">
            <summary>
            Gets the primitive property converter.
            </summary>
            <value>
            The primitive property converter.
            </value>
        </member>
        <member name="T:System.Data.Services.Client.MaterializedEntityArgs">
            <summary>
            Materialized Entity arguments
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.MaterializedEntityArgs.#ctor(Microsoft.Data.OData.ODataEntry,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.MaterializedEntityArgs"/> class.
            </summary>
            <param name="entry">The entry.</param>
            <param name="entity">The entity.</param>
        </member>
        <member name="P:System.Data.Services.Client.MaterializedEntityArgs.Entry">
            <summary>
            Gets the entry.
            </summary>
            <value>
            The entry.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.MaterializedEntityArgs.Entity">
            <summary>
            Gets the entity.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientRequestMessage">
            <summary>
            This class represents the contract WCF Data Services client with the request message.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestMessage.actualHttpMethod">
            <summary>Http method.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientRequestMessage"/> class.
            </summary>
            <param name="actualMethod">The actual method.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.GetHeader(System.String)">
            <summary>
            Returns the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <returns>Returns the value of the header with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.SetHeader(System.String,System.String)">
            <summary>
            Sets the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <param name="headerValue">Value of the header.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.GetStream">
            <summary>
            Gets the stream to be used to write the request payload.
            </summary>
            <returns>Stream to which the request payload needs to be written.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.Abort">
            <summary>
            Abort the current request.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.BeginGetRequestStream(System.AsyncCallback,System.Object)">
            <summary>
            Begins an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.EndGetRequestStream(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="asyncResult">The pending request for a stream.</param>
            <returns>A System.IO.Stream to use to write request data.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.BeginGetResponse(System.AsyncCallback,System.Object)">
            <summary>
             Begins an asynchronous request to an Internet resource.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request for a response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.EndGetResponse(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request to an Internet resource.
            </summary>
            <param name="asyncResult">The pending request for a response.</param>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestMessage.GetResponse">
            <summary>
            Returns a response from an Internet resource.
            </summary>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessage.Headers">
            <summary>
            Returns the collection of request headers.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessage.Url">
            <summary>
            Gets or sets the request url.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessage.Method">
            <summary>
            Gets or sets the method for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessage.Credentials">
            <summary>
            Gets or set the credentials for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessage.Timeout">
            <summary>
            Gets or sets the timeout (in seconds) for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessage.SendChunked">
            <summary>
            Gets or sets a value that indicates whether to send data in segments to the
             Internet resource.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestMessage.ActualMethod">
            <summary>
            Gets or the actual method. In post tunneling situations method will be POST instead of the specified verb method.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.WritingEntityReferenceLinkArgs">
            <summary>
            The writing entity reference link arguments
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.WritingEntityReferenceLinkArgs.#ctor(Microsoft.Data.OData.ODataEntityReferenceLink,System.Object,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.WritingEntityReferenceLinkArgs"/> class.
            </summary>
            <param name="entityReferenceLink">The entity reference link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="P:System.Data.Services.Client.WritingEntityReferenceLinkArgs.EntityReferenceLink">
            <summary>
            Gets the feed.
            </summary>
            <value>
            The feed.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.WritingEntityReferenceLinkArgs.Source">
            <summary>
            Gets the source.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.WritingEntityReferenceLinkArgs.Target">
            <summary>
            Gets the target.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.WritingEntryArgs">
            <summary>
            Writing entry arguments
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.WritingEntryArgs.#ctor(Microsoft.Data.OData.ODataEntry,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.WritingEntryArgs"/> class.
            </summary>
            <param name="entry">The entry.</param>
            <param name="entity">The entity.</param>
        </member>
        <member name="P:System.Data.Services.Client.WritingEntryArgs.Entry">
            <summary>
            Gets the entry.
            </summary>
            <value>
            The entry.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.WritingEntryArgs.Entity">
            <summary>
            Gets the entity.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.WritingNavigationLinkArgs">
            <summary>
            Writing navigation link arguments
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.WritingNavigationLinkArgs.#ctor(Microsoft.Data.OData.ODataNavigationLink,System.Object,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.WritingNavigationLinkArgs"/> class.
            </summary>
            <param name="link">The link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="P:System.Data.Services.Client.WritingNavigationLinkArgs.Link">
            <summary>
            Gets the link.
            </summary>
            <value>
            The link.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.WritingNavigationLinkArgs.Source">
            <summary>
            Gets the source.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.WritingNavigationLinkArgs.Target">
            <summary>
            Gets the target.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration">
            <summary>
            Class that holds a variety of events for writing the payload from the OData to the wire
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.writingStartEntryActions">
            <summary> Actions to execute before start entry called. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.writingEndEntryActions">
            <summary> Actions to execute before end entry called. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.writeEntityReferenceLinkActions">
            <summary> Actions to execute before entity reference link written. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.writingStartNavigationLinkActions">
            <summary> Actions to execute after before start navigation link called. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.writingEndNavigationLinkActions">
            <summary> Actions to execute before end navigation link called. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.messageWriterSettingsConfigurationActions">
            <summary> The message writer setting configurations. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.onmessageCreating">
            <summary> The delegate that represents how a message is created.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.#ctor">
            <summary>
            Creates a request pipeline configuration class
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.OnMessageWriterSettingsCreated(System.Action{System.Data.Services.Client.MessageWriterSettingsArgs})">
            <summary>
            Called when [message writer created].
            </summary>
            <param name="args">The args.</param>
            <returns>The request pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.OnEntryStarting(System.Action{System.Data.Services.Client.WritingEntryArgs})">
            <summary>
            Called when [entry starting].
            </summary>
            <param name="action">The action.</param>
            <returns>The request pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.OnEntryEnding(System.Action{System.Data.Services.Client.WritingEntryArgs})">
            <summary>
            Called when [entry ending].
            </summary>
            <param name="action">The action.</param>
            <returns>The request pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.OnEntityReferenceLink(System.Action{System.Data.Services.Client.WritingEntityReferenceLinkArgs})">
            <summary>
            Called when [entity reference link].
            </summary>
            <param name="action">The action.</param>
            <returns>The request pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.OnNavigationLinkStarting(System.Action{System.Data.Services.Client.WritingNavigationLinkArgs})">
            <summary>
            Called when [navigation link starting].
            </summary>
            <param name="action">The action.</param>
            <returns>The request pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.OnNavigationLinkEnding(System.Action{System.Data.Services.Client.WritingNavigationLinkArgs})">
            <summary>
            Called when [navigation link end].
            </summary>
            <param name="action">The action.</param>
            <returns>The request pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.ExecuteWriterSettingsConfiguration(Microsoft.Data.OData.ODataMessageWriterSettingsBase)">
            <summary>
            Called when [create message writer settings configurations].
            </summary>
            <param name="writerSettings">The writer settings.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.ExecuteOnEntryEndActions(Microsoft.Data.OData.ODataEntry,System.Object)">
            <summary>
            Fires before entry end.
            </summary>
            <param name="entry">The entry.</param>
            <param name="entity">The entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.ExecuteOnEntryStartActions(Microsoft.Data.OData.ODataEntry,System.Object)">
            <summary>
            Fires before entry start.
            </summary>
            <param name="entry">The entry.</param>
            <param name="entity">The entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.ExecuteOnNavigationLinkEndActions(Microsoft.Data.OData.ODataNavigationLink,System.Object,System.Object)">
            <summary>
            Fires before navigation end.
            </summary>
            <param name="link">The link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.ExecuteOnNavigationLinkStartActions(Microsoft.Data.OData.ODataNavigationLink,System.Object,System.Object)">
            <summary>
            Fires before navigation start.
            </summary>
            <param name="link">The link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.ExecuteEntityReferenceLinkActions(Microsoft.Data.OData.ODataEntityReferenceLink,System.Object,System.Object)">
            <summary>
            Fires before writing the on entity reference link.
            </summary>
            <param name="entityReferenceLink">The entity reference link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.OnMessageCreating">
            <summary>
            Gets the request message to be used for sending the request. By providing a custom message, users
            can replace the transport layer.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.HasOnMessageCreating">
            <summary>
            Determines if OnMessageCreating is being used or not.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration.ContextUsingSendingRequest">
            <summary>
            Gets or sets the a value indicating whether the context is using the sending request event or not.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ReadingNavigationLinkArgs">
            <summary>
            The reading navigation link arguments
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ReadingNavigationLinkArgs.#ctor(Microsoft.Data.OData.ODataNavigationLink)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ReadingNavigationLinkArgs"/> class.
            </summary>
            <param name="link">The link.</param>
        </member>
        <member name="P:System.Data.Services.Client.ReadingNavigationLinkArgs.Link">
            <summary>
            Gets the link.
            </summary>
            <value>
            The link.
            </value>
        </member>
        <member name="T:System.Data.Services.Client.ReadingFeedArgs">
            <summary>
            The reading feed arguments
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ReadingFeedArgs.#ctor(Microsoft.Data.OData.ODataFeed)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ReadingFeedArgs"/> class.
            </summary>
            <param name="feed">The feed.</param>
        </member>
        <member name="P:System.Data.Services.Client.ReadingFeedArgs.Feed">
            <summary>
            Gets the feed.
            </summary>
            <value>
            The feed.
            </value>
        </member>
        <member name="T:System.Data.Services.Client.EntityTrackerBase">
            <summary>
            Entity Tracker base, allows more decoupling for testing.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityTrackerBase.TryGetEntity(System.String,System.Data.Services.Client.EntityStates@)">
            <summary>
            Find tracked entity by its resourceUri and update its etag.
            </summary>
            <param name="resourceUri">resource id</param>
            <param name="state">state of entity</param>
            <returns>entity if found else null</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTrackerBase.GetLinks(System.Object,System.String)">
            <summary>
            get the related links ignoring target entity
            </summary>
            <param name="source">source entity</param>
            <param name="sourceProperty">source entity's property</param>
            <returns>enumerable of related ends</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTrackerBase.InternalAttachEntityDescriptor(System.Data.Services.Client.EntityDescriptor,System.Boolean)">
            <summary>
            Attach entity into the context in the Unchanged state.
            </summary>
            <param name="entityDescriptorFromMaterializer">entity descriptor from the response</param>
            <param name="failIfDuplicated">fail for public api else change existing relationship to unchanged</param>
            <remarks>Caller should validate descriptor instance.</remarks>
            <returns>The attached descriptor, if one already exists in the context and failIfDuplicated is set to false, then the existing instance is returned</returns>
            <exception cref="T:System.InvalidOperationException">if entity is already being tracked by the context</exception>
            <exception cref="T:System.InvalidOperationException">if identity is pointing to another entity</exception>
        </member>
        <member name="M:System.Data.Services.Client.EntityTrackerBase.GetEntityDescriptor(System.Object)">
            <summary>
            verify the resource being tracked by context
            </summary>
            <param name="resource">resource</param>
            <returns>The given resource.</returns>
            <exception cref="T:System.InvalidOperationException">if resource is not contained</exception>
        </member>
        <member name="M:System.Data.Services.Client.EntityTrackerBase.DetachExistingLink(System.Data.Services.Client.LinkDescriptor,System.Boolean)">
            <summary>Detach existing link</summary>
            <param name="existingLink">link to detach</param>
            <param name="targetDelete">true if target is being deleted, false otherwise</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTrackerBase.AttachLink(System.Object,System.String,System.Object,System.Data.Services.Client.MergeOption)">
            <summary>
            attach the link with the given source, sourceProperty and target.
            </summary>
            <param name="source">source entity of the link.</param>
            <param name="sourceProperty">name of the property on the source entity.</param>
            <param name="target">target entity of the link.</param>
            <param name="linkMerge">merge option to be used to merge the link if there is an existing link.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTrackerBase.AttachIdentity(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.MergeOption)">
            <summary>response materialization has an identity to attach to the inserted object</summary>
            <param name="entityDescriptorFromMaterializer">entity descriptor containing all the information about the entity from the response.</param>
            <param name="metadataMergeOption">mergeOption based on which EntityDescriptor will be merged.</param>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataMaterializerContext">
            <summary>
            Contains state and methods required to materialize odata collection, complex and primitive values
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.IODataMaterializerContext">
            <summary>
            Context for materialization of OData values
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.IODataMaterializerContext.ResolveTypeForMaterialization(System.Type,System.String)">
            <summary>
            Resolves the client type that should be used for materialization.
            </summary>
            <param name="expectedType">Expected client clr type based on the API called.</param>
            <param name="readerTypeName">
            The name surfaced by the ODataLib reader.
            If we have a server model, this will be a server type name that needs to be resolved.
            If not, then this will already be a client type name.</param>
            <returns>The resolved annotation for the client type to materialize into.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.IODataMaterializerContext.ResolveExpectedTypeForReading(System.Type)">
            <summary>
            Resolves the expected EDM type to give to the ODataLib reader based on a client CLR type.
            </summary>
            <param name="clientClrType">The client side CLR type.</param>
            <returns>The resolved EDM type to provide to ODataLib.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.IODataMaterializerContext.IgnoreMissingProperties">
            <summary>
            Gets a value indicating whether Ignore missing properties is set or not
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.IODataMaterializerContext.Model">
            <summary>
            Gets a value indicated the Client Edm Model
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.IODataMaterializerContext.ResponsePipeline">
            <summary>
            Gets the materialization Events
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.IODataMaterializerContext.AutoNullPropagation">
            <summary>
            Gets the value which indicates whether auto nulls check in expand paths in enabled.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializerContext.#ctor(System.Data.Services.Client.ResponseInfo)">
            <summary>
            Initializes a materializer context
            </summary>
            <param name="responseInfo">Response information used to initialize with the materializer</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializerContext.ResolveTypeForMaterialization(System.Type,System.String)">
            <summary>
            Resolved the given edm type to clr type.
            </summary>
            <param name="expectedType">Expected Clr type.</param>
            <param name="wireTypeName">Edm name of the type returned by the resolver.</param>
            <returns>an instance of ClientTypeAnnotation with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMaterializerContext.ResolveExpectedTypeForReading(System.Type)">
            <summary>
            Resolves the EDM type for the given CLR type.
            </summary>
            <param name="expectedType">The client side CLR type.</param>
            <returns>The resolved EDM type.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializerContext.IgnoreMissingProperties">
            <remarks>
            Undeclared properties will be silently ignored if they are allowed from pervious stage, otherwise exception will be thrown.
            </remarks>
            <summary>
            Gets a value indicating whether to ignore missing properties when materializing values
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializerContext.Model">
            <summary>
            Gets a Client Edm model used to materialize values
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializerContext.ResponsePipeline">
            <summary>
            Gets the materialization Events
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializerContext.AutoNullPropagation">
            <summary>
            Gets the value which indicates whether auto nulls check in expand path is enabled.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMaterializerContext.ResponseInfo">
            <summary>
            Gets the Response information that backs the information on the context
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ReadingEntryArgs">
            <summary>
            The reading entry args
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ReadingEntryArgs.#ctor(Microsoft.Data.OData.ODataEntry)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ReadingEntryArgs"/> class.
            </summary>
            <param name="entry">The entry.</param>
        </member>
        <member name="P:System.Data.Services.Client.ReadingEntryArgs.Entry">
            <summary>
            Gets the entry.
            </summary>
            <value>
            The entry.
            </value>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration">
            <summary>
            Class that is responsible for configuration of actions that are invoked from a response
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.readingStartEntryActions">
            <summary> Actions to be run when reading start entry called </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.readingEndEntryActions">
            <summary> Actions to be run when reading end entry called </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.readingStartFeedActions">
            <summary> Actions to be run when reading start feed called </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.readingEndFeedActions">
            <summary> Actions to be run when reading end feed called </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.readingStartNavigationLinkActions">
            <summary> Actions to be run when reading start link called </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.readingEndNavigationLinkActions">
            <summary> Actions to be run when reading end link called </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.materializedEntityActions">
            <summary> Actions to be run after an entry has been materialized </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.messageReaderSettingsConfigurationActions">
            <summary> The message reader setting configurations. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.sender">
            <summary> The sender. </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.#ctor(System.Object)">
            <summary>
            Creates a Data service client response pipeline class
            </summary>
            <param name="sender"> The sender for the Reading Atom event.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnMessageReaderSettingsCreated(System.Action{System.Data.Services.Client.MessageReaderSettingsArgs})">
            <summary>
            Called when [reader settings created].
            </summary>
            <param name="messageReaderSettingsAction">The reader message settings configuration.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnEntryStarted(System.Action{System.Data.Services.Client.ReadingEntryArgs})">
            <summary>
            Called when [read start entry].
            </summary>
            <param name="action">The action.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnEntryEnded(System.Action{System.Data.Services.Client.ReadingEntryArgs})">
            <summary>
            Called when [read end entry].
            </summary>
            <param name="action">The action.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnFeedStarted(System.Action{System.Data.Services.Client.ReadingFeedArgs})">
            <summary>
            Called when [read start feed].
            </summary>
            <param name="action">The action.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnFeedEnded(System.Action{System.Data.Services.Client.ReadingFeedArgs})">
            <summary>
            Called when [read end feed].
            </summary>
            <param name="action">The action.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnNavigationLinkStarted(System.Action{System.Data.Services.Client.ReadingNavigationLinkArgs})">
            <summary>
            Called when [read start navigation link].
            </summary>
            <param name="action">The action.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnNavigationLinkEnded(System.Action{System.Data.Services.Client.ReadingNavigationLinkArgs})">
            <summary>
            Called when [read end navigation link].
            </summary>
            <param name="action">The action.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.OnEntityMaterialized(System.Action{System.Data.Services.Client.MaterializedEntityArgs})">
            <summary>
            Called when [entity materialized].
            </summary>
            <param name="action">The action.</param>
            <returns>The response pipeline configuration.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteReaderSettingsConfiguration(Microsoft.Data.OData.ODataMessageReaderSettingsBase)">
            <summary>
            Executes actions that configure reader settings.
            </summary>
            <param name="readerSettings">The reader settings.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteOnEntryEndActions(Microsoft.Data.OData.ODataEntry)">
            <summary>
            Executes the on entry end actions.
            </summary>
            <param name="entry">The entry.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteOnEntryStartActions(Microsoft.Data.OData.ODataEntry)">
            <summary>
            Executes the on entry start actions.
            </summary>
            <param name="entry">The entry.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteOnFeedEndActions(Microsoft.Data.OData.ODataFeed)">
            <summary>
            Executes the on feed end actions.
            </summary>
            <param name="feed">The feed.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteOnFeedStartActions(Microsoft.Data.OData.ODataFeed)">
            <summary>
            Executes the on feed start actions.
            </summary>
            <param name="feed">The feed.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteOnNavigationEndActions(Microsoft.Data.OData.ODataNavigationLink)">
            <summary>
            Executes the on navigation end actions.
            </summary>
            <param name="link">The link.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteOnNavigationStartActions(Microsoft.Data.OData.ODataNavigationLink)">
            <summary>
            Executes the on navigation start actions.
            </summary>
            <param name="link">The link.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ExecuteEntityMaterializedActions(Microsoft.Data.OData.ODataEntry,System.Object)">
            <summary>
            Fires after the entry was materialized
            </summary>
            <param name="entry">The entry.</param>
            <param name="entity">The entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.FireReadingAtomEntityEvent(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Fires the reading atom entity event.
            </summary>
            <param name="materializerEntry">The materializer entry.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.FireEndEntryEvents(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Fires the end entry events.
            </summary>
            <param name="entry">The entry.</param>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.ReadingAtomEntity">
            <summary>
            Internal event instance used by the public ReadingEntity event.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.HasConfigurations">
            <summary>
            Gets a value indicating whether this instance has handlers.
            </summary>
            <value>
            <c>true</c> if this instance has handlers; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.HasAtomReadingEntityHandlers">
            <summary>
            Gets a value indicating whether this instance has atom reading entity handlers.
            </summary>
            <value>
            <c>true</c> if this instance has atom reading entity handlers; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientResponsePipelineConfiguration.HasReadingEntityHandlers">
            <summary>
            Gets whether there is a reading entity handler
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter">
            <summary>
            Class for reading top level feeds or entries and adapting it for the materializer
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.readODataFormat">
            <summary>The odata format being read.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.reader">
            <summary>The reader.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.clientEdmModel">
            <summary>The Client Edm Model used to determine type information.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.mergeOption">
            <summary>MergeOption information to determine how to merge descriptors.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.feedEntries">
            <summary>An enumerator of <see cref="T:Microsoft.Data.OData.ODataEntry"/> values.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.currentFeed">
            <summary>The current feed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.currentEntry">
            <summary>The current entry.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.ODataReaderWrapper,System.Data.Services.Client.ClientEdmModel,System.Data.Services.Client.MergeOption)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter"/> class.
            </summary>
            <param name="messageReader">The messageReader that is used to get the format of the reader.</param>
            <param name="reader">The reader.</param>
            <param name="model">The model.</param>
            <param name="mergeOption">The mergeOption.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.#ctor(Microsoft.Data.OData.ODataFormat,System.Data.Services.Client.Materialization.ODataReaderWrapper,System.Data.Services.Client.ClientEdmModel,System.Data.Services.Client.MergeOption)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter"/> class. Used for tests so no ODataMessageReader is required
            </summary>
            <param name="odataFormat">The format of the reader.</param>
            <param name="reader">The reader.</param>
            <param name="model">The model.</param>
            <param name="mergeOption">The mergeOption.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.GetCountValue(System.Boolean)">
            <summary>
            The count tag's value, if requested
            </summary>
            <param name="readIfNoFeed">Should read pull if no feed exists.</param>
            <returns>The count value returned from the server</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.Read">
            <summary>
            Read a feed or entry, with the expected type.
            </summary>
            <returns>true if a value was read, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.Dispose">
            <summary>
            Disposes the reader
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.TryReadFeedOrEntry(System.Boolean,Microsoft.Data.OData.ODataFeed@,System.Data.Services.Client.Materialization.MaterializerEntry@)">
            <summary>
            Tries to read a feed or entry.
            </summary>
            <param name="lazy">if set to <c>true</c> [lazy].</param>
            <param name="feed">The feed.</param>
            <param name="entry">The entry.</param>
            <returns>true if a value was read, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.TryStartReadFeedOrEntry">
            <summary>
            Tries to read the start of a feed or entry.
            </summary>
            <returns>true if a value was read, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.TryReadFeed(System.Boolean,Microsoft.Data.OData.ODataFeed@)">
            <summary>
            Tries to read a feed.
            </summary>
            <param name="lazy">if set to <c>true</c> [lazy].</param>
            <param name="feed">The feed.</param>
            <returns>true if a value was read, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.ReadFeedCore(System.Boolean)">
            <summary>
            Reads the remainder of a feed.
            </summary>
            <param name="lazy">if set to <c>true</c> [lazy].</param>
            <returns>A feed.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.LazyReadEntries">
            <summary>
            Lazily reads entries.
            </summary>
            <returns>An enumerable that will lazily read entries when enumerated.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.TryReadEntry(System.Data.Services.Client.Materialization.MaterializerEntry@)">
            <summary>
            Tries to read an entry.
            </summary>
            <param name="entry">The entry.</param>
            <returns>true if a value was read, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.ReadEntryCore">
            <summary>
            Reads the remainder of an entry.
            </summary>
            <returns>An entry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.ReadNavigationLink">
            <summary>
            Reads a navigation link.
            </summary>
            <returns>A navigation link.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.TryRead">
            <summary>
            Tries to read from the ODataReader.
            </summary>
            <returns>True if a value is read, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.ReadAndExpectState(Microsoft.Data.OData.ODataReaderState)">
            <summary>
            Reads from the reader and asserts the reader is in the expected state.
            </summary>
            <param name="expectedState">The expected state.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.AssertRead">
            <summary>
            Asserts that an item could be read.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.ExpectState(Microsoft.Data.OData.ODataReaderState)">
            <summary>
            Asserts the reader is in the expected state.
            </summary>
            <param name="expectedState">The expected state.</param>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.CurrentFeed">
            <summary>
            Gets the current feed.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.CurrentEntry">
            <summary>
            Gets the current entry.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.FeedAndEntryMaterializerAdapter.IsEndOfStream">
            <summary>
            Gets a value indicating whether this instance is end of stream.
            </summary>
            <value>
                <c>true</c> if this instance is end of stream; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="T:System.Data.Services.Client.DictionaryExtensions">
            <summary>
            Useful extension methods for IDictionary
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DictionaryExtensions.FindOrAdd``2(System.Collections.Generic.IDictionary{``0,``1},``0,System.Func{``1})">
            <summary>
            If the key exists in the dictionary, returns it. Otherwise creates a new value, adds it to the dictionary, and returns it.
            </summary>
            <typeparam name="TKey">The type of the key.</typeparam>
            <typeparam name="TValue">The type of the value.</typeparam>
            <param name="dictionary">The dictionary to look in.</param>
            <param name="key">The key to find/add.</param>
            <param name="createValue">A callback to create a new value if one is not found.</param>
            <returns>The new or found value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DictionaryExtensions.SetRange``2(System.Collections.Generic.IDictionary{``0,``1},System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{``0,``1}})">
            <summary>
            Sets a range of values in the dictionary. A set operation is performed on each value in <paramref name="valuesToCopy"/>
            </summary>
            <typeparam name="TKey">The type of the key.</typeparam>
            <typeparam name="TValue">The type of the value.</typeparam>
            <param name="dictionary">The dictionary to set the values in.</param>
            <param name="valuesToCopy">Enumerable of key-value pairs to set in <paramref name="dictionary"/>.</param>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientFormat">
            <summary>
            Tracks the user-preferred format which the client should use when making requests.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeApplicationAtom">
            <summary>MIME type for ATOM bodies (http://www.iana.org/assignments/media-types/application/).</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeApplicationJson">
            <summary>MIME type for JSON bodies (implies light in V3, verbose otherwise) (http://www.iana.org/assignments/media-types/application/).</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeApplicationJsonODataLight">
            <summary>MIME type for JSON bodies in light mode (http://www.iana.org/assignments/media-types/application/).</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeApplicationJsonODataLightWithAllMetadata">
            <summary>MIME type for JSON bodies in light mode with all metadata.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeApplicationJsonODataVerbose">
            <summary>MIME type for JSON bodies in verbose mode (http://www.iana.org/assignments/media-types/application/).</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeODataParameterVerboseValue">
            <summary>OData parameter value for verbose.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeMultiPartMixed">
            <summary>MIME type for changeset multipart/mixed</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeApplicationXml">
            <summary>MIME type for XML bodies.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.MimeApplicationAtomOrXml">
            <summary>Combined accept header value for either 'application/atom+xml' or 'application/xml'.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.Utf8Encoding">
            <summary>text for the utf8 encoding</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.HttpAcceptCharset">
            <summary>The character set the client wants the response to be in.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientFormat.context">
            <summary>The context this format instance is associated with.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.#ctor(System.Data.Services.Client.DataServiceContext)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientFormat"/> class.
            </summary>
            <param name="context">DataServiceContext instance associated with this format.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.UseJson(Microsoft.Data.Edm.IEdmModel)">
            <summary>
            Indicates that the client should use the efficient JSON format.
            </summary>
            <param name="serviceModel">The model of the service.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.UseJson">
            <summary>
            Indicates that the client should use the efficient JSON format. Will invoke the LoadServiceModel delegate property in order to get the required service model.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.UseAtom">
            <summary>
            Indicates that the client should use the Atom format.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestAcceptHeader(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Sets the value of the Accept header to the appropriate value for the current format.
            </summary>
            <param name="headers">The headers to modify.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestAcceptHeaderForQuery(System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.QueryComponents)">
            <summary>
            Sets the value of the Accept header for a query.
            </summary>
            <param name="headers">The headers to modify.</param>
            <param name="components">The query components for the request.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestAcceptHeaderForStream(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Sets the value of the Accept header for a stream request (will set it to '*/*').
            </summary>
            <param name="headers">The headers to modify.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestAcceptHeaderForCount(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Sets the value of the Accept header for a count request (will set it to 'text/plain').
            </summary>
            <param name="headers">The headers to modify.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestAcceptHeaderForBatch(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Sets the value of the Accept header for a count request (will set it to 'multipart/mixed').
            </summary>
            <param name="headers">The headers to modify.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestContentTypeForEntry(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Sets the value of the ContentType header on the specified entry request to the appropriate value for the current format.
            </summary>
            <param name="headers">Dictionary of request headers.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestContentTypeForOperationParameters(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Sets the value of the Content-Type header a request with operation parameters to the appropriate value for the current format.
            </summary>
            <param name="headers">Dictionary of request headers.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestContentTypeForLinks(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Sets the value of the ContentType header on the specified links request to the appropriate value for the current format.
            </summary>
            <param name="headers">Dictionary of request headers.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.ValidateCanWriteRequestFormat(Microsoft.Data.OData.IODataRequestMessage,System.Boolean)">
            <summary>
            Validates that we can write the request format.
            </summary>
            <param name="requestMessage">The request message to get the format from.</param>
            <param name="isParameterPayload">true if the writer is intended to for a parameter payload, false otherwise.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.ValidateCanReadResponseFormat(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>
            Validates that we can read the response format.
            </summary>
            <param name="responseMessage">The response message to get the format from.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.ThrowInvalidOperationExceptionForJsonLightWithoutModel">
            <summary>
            Throws InvalidOperationException for JSON Light without a model.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.ThrowNotSupportedExceptionForJsonVerbose(System.String)">
            <summary>
            Throws NotSupportedException for JSON Verbose format.
            </summary>
            <param name="contentType">Content-type to appear on the message.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.ValidateContentType(System.String,System.Boolean)">
            <summary>
            Validates that we can read or write a message with the given content-type value.
            </summary>
            <param name="contentType">The content-type value in question.</param>
            <param name="isParameterPayload">true if the writer is intended to for a parameter payload, false otherwise.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetRequestContentTypeHeader(System.Data.Services.Client.HeaderCollection,System.String)">
            <summary>
            Sets the request's content type header.
            </summary>
            <param name="headers">Dictionary of request headers.</param>
            <param name="mediaType">content type</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.SetAcceptHeaderAndCharset(System.Data.Services.Client.HeaderCollection,System.String)">
            <summary>
            Sets the accept header to the given value and the charset to UTF-8.
            </summary>
            <param name="headers">The headers to update.</param>
            <param name="mediaType">The media type for the accept header.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientFormat.ChooseMediaType(System.String,System.Boolean)">
            <summary>
            Chooses between using JSON-Light and the context-dependent media type for when Atom is selected based on the user-selected format.
            </summary>
            <param name="valueIfUsingAtom">The value if using atom.</param>
            <param name="hasSelectQueryOption">
              Whether or not the select query option is present in the request URI.
              If true, indicates that the client should ask the server to include all metadata in a JSON-Light response.
            </param>
            <returns>The media type to use (either JSON-Light or the provided value)</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientFormat.ODataFormat">
            <summary>
            Gets the current format. Defaults to Atom if nothing else has been specified.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientFormat.LoadServiceModel">
            <summary>
            Invoked when using the parameterless UseJson method in order to get the service model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientFormat.UsingAtom">
            <summary>
            True if the format has been configured to use Atom, otherwise False.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientFormat.UriLiteralFormat">
            <summary>
            ODataFormat to use when writing URI literals.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientFormat.ServiceModel">
            <summary>
            Gets the service model.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceQueryContinuation">
            <summary>Encapsulates a URI that returns the next page of a paged WCF Data Services query result.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQueryContinuation.nextLinkUri">
            <summary>URI to next page of data.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQueryContinuation.plan">
            <summary>Projection plan for results of next page.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryContinuation.#ctor(System.Uri,System.Data.Services.Client.ProjectionPlan)">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation"/> instance.</summary>
            <param name="nextLinkUri">URI to next page of data.</param>
            <param name="plan">Projection plan for results of next page.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryContinuation.ToString">
            <summary>Returns the next link URI as a string.</summary>
            <returns>A string representation of the next link URI. </returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryContinuation.Create(System.Uri,System.Data.Services.Client.ProjectionPlan)">
            <summary>Creates a new <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation"/> instance.</summary>
            <param name="nextLinkUri">Link to next page of data (possibly null).</param>
            <param name="plan">Plan to materialize the data (only null if nextLinkUri is null).</param>
            <returns>A new continuation object; null if nextLinkUri is null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryContinuation.CreateQueryComponents">
            <summary>
            Initializes a new <see cref="T:System.Data.Services.Client.QueryComponents"/> instance that can
            be used for this continuation.
            </summary>
            <returns>A new initializes <see cref="T:System.Data.Services.Client.QueryComponents"/>.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQueryContinuation.NextLinkUri">
            <summary>Gets the URI that is used to return the next page of data from a paged query result.</summary>
            <returns>A URI that returns the next page of data.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQueryContinuation.ElementType">
            <summary>Type of element to be paged over.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQueryContinuation.Plan">
            <summary>Projection plan for the next page of data; null if not available.</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceQueryContinuation`1">
            <summary>Encapsulates a URI that returns the next page of a paged WCF Data Services query result. </summary>
            <typeparam name="T">The type of continuation token.</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryContinuation`1.#ctor(System.Uri,System.Data.Services.Client.ProjectionPlan)">
            <summary>Initializes a new typed instance.</summary>
            <param name="nextLinkUri">URI to next page of data.</param>
            <param name="plan">Projection plan for results of next page.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQueryContinuation`1.ElementType">
            <summary>Type of element to be paged over.</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceResponsePreference">
            <summary>Determines whether the client requests that the data service return inserted or updated entity data as an entry in the response message.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceResponsePreference.None">
            <summary>default option, no Prefer header is sent.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceResponsePreference.IncludeContent">
            <summary>Prefer header with value return-content is sent with all PUT/MERGE/POST requests to entities.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceResponsePreference.NoContent">
            <summary>Prefer header with value return-no-content is sent with all PUT/MERGE/POST requests to entities.</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceSaveStream">
            <summary>Stream wrapper for MR POST/PUT which also holds the information if the stream should be closed or not.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceSaveStream.args">
            <summary>Arguments for the request when POST/PUT of the stream is issued.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceSaveStream.stream">
            <summary>The stream we are wrapping.
            Can be null in which case we didn't open it yet.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceSaveStream.close">
            <summary>Set to true if the stream should be closed once we're done with it.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceSaveStream.#ctor(System.IO.Stream,System.Boolean,System.Data.Services.Client.DataServiceRequestArgs)">
            <summary>
            Constructor
            </summary>
            <param name="stream">The stream to use.</param>
            <param name="close">Should the stream be closed before SaveChanges returns.</param>
            <param name="args">Additional arguments to apply to the request before sending it.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceSaveStream.Close">
            <summary>
            Close the stream if required.
            This is so that callers can simply call this method and don't have to care about the settings.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceSaveStream.Stream">
            <summary>The stream to use.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceSaveStream.Args">
            <summary>
            Arguments to be used for creation of the HTTP request when POST/PUT for the MR is issued.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceStreamLink">
            <summary>Represents the URL of a binary resource stream.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamLink.name">
            <summary>name of the stream whose link needs to be populated.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamLink.selfLink">
            <summary>self link for the stream.</summary>
            <remarks>This should always be an absolute uri, if specified. If the payload contains an relative uri,
            we always use the context base uri to convert this into an absolute uri.</remarks>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamLink.editLink">
            <summary>edit link for the stream.</summary>
            <remarks>This should always be an absolute uri, if specified. If the payload contains an relative uri,
            we always use the context base uri to convert this into an absolute uri.</remarks>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamLink.contentType">
            <summary>content type of the stream.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamLink.etag">
            <summary>etag for the stream.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceStreamLink.#ctor(System.String)">
            <summary>
            Internal constructor to be used by the projection plan compiler, so that we capture the ri
            </summary>
            <param name="name">name of the stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceStreamLink.OnPropertyChanged(System.String)">
            <summary>
            One of the properties changed its value
            </summary>
            <param name="propertyName">property name</param>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceStreamLink.PropertyChanged">
            <summary>
            PropertyChanged Event
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamLink.Name">
            <summary>The name of the binary resource stream.</summary>
            <returns>The name of the binary resource stream.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamLink.SelfLink">
            <summary>The URI that returns the binary resource stream.</summary>
            <returns>The URI of the stream.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamLink.EditLink">
            <summary>Gets the URI used to edit the binary resource stream.</summary>
            <returns>The URI used to edit the stream.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamLink.ContentType">
            <summary>Gets the MIME Content-Type of the binary resource stream. </summary>
            <returns>The Content-Type value for the stream.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamLink.ETag">
            <summary>The eTag value that is used to determine concurrency for a binary resource stream.</summary>
            <returns>The value of the eTag header for the stream.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceTransportException">
            <summary>
            Class to describe errors thrown by transport layer.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceTransportException.state">
            <summary>
            Contains the state for this exception.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceTransportException.#ctor(Microsoft.Data.OData.IODataResponseMessage,System.Exception)">
            <summary>
            Constructs a new instance of DataServiceTransportException.
            </summary>
            <param name="response">ResponseMessage from the exception so that the error payload can be read.</param>
            <param name="innerException">Actual exception that this exception is wrapping.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceTransportException.Response">
            <summary>
            Gets the response message for this exception.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceTransportException.DataServiceWebExceptionSerializationState">
            <summary>
            Contains the state of the exception, used for serialization in security transparent code.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceTransportException.DataServiceWebExceptionSerializationState.System#Runtime#Serialization#ISafeSerializationData#CompleteDeserialization(System.Object)">
            <summary>
            Called when deserialization of the exception is complete.
            </summary>
            <param name="deserialized">The deserialized exception.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceTransportException.DataServiceWebExceptionSerializationState.ResponseMessage">
            <summary>
            Gets or sets the response message for this exception.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DynamicProxyMethodGenerator">
            <summary>
            Generates proxy methods for external callers to call internal methods
            All lambda_methods are considered external. When these methods need
            to access internal resources, a proxy must be used. Otherwise the call
            will fail for partial trust scenario.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DynamicProxyMethodGenerator.dynamicProxyMethods">
            <summary>
            Dynamically generated proxy methods for external callers (lambda_method are external callers)
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DynamicProxyMethodGenerator.GetCallWrapper(System.Reflection.MethodBase,System.Linq.Expressions.Expression[])">
            <summary>
            Builds an expression to best call the specified <paramref name="method"/>.
            </summary>
            <param name="method">The original method or constructor</param>
            <param name="arguments">The arguments with which to call the method.</param>
            <returns>An expression to call the argument method or constructor</returns>
        </member>
        <member name="M:System.Data.Services.Client.DynamicProxyMethodGenerator.ThisAssemblyCanCreateHostedDynamicMethodsWithSkipVisibility">
            <summary>
            Determines whether this assembly has enough permissions to create
            <see cref="T:System.Reflection.Emit.DynamicMethod"/>s that can be hosted within this assembly
            and also skip visibility checks (access modifier checks) in order to call potentially
            internal user types (e.g., anonymous types).
            </summary>
            <returns>True if this assembly has enough permissions. Otherwise, false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DynamicProxyMethodGenerator.GetDynamicMethodCallWrapper(System.Reflection.MethodBase,System.Linq.Expressions.Expression[])">
            <summary>
            Build a externally visible <see cref="T:System.Reflection.Emit.DynamicMethod"/> to call the argument method.
            </summary>
            <param name="method">The original method or constructor</param>
            <param name="arguments">The arguments with which to call the method.</param>
            <returns>An expression to call the argument method or constructor</returns>
        </member>
        <member name="M:System.Data.Services.Client.DynamicProxyMethodGenerator.CreateDynamicMethod(System.String,System.Type,System.Type[])">
            <summary>
            Create a new dynamic method
            </summary>
            <param name="name">the name</param>
            <param name="returnType">the return type</param>
            <param name="parameterTypes">the parameter types</param>
            <returns>a new instance of dynamic method</returns>
        </member>
        <member name="M:System.Data.Services.Client.DynamicProxyMethodGenerator.WrapOriginalMethodWithExpression(System.Reflection.MethodBase,System.Linq.Expressions.Expression[])">
            <summary>
            Wraps the specified <see cref="T:System.Reflection.MethodBase"/> in an expression that invokes it.
            </summary>
            <param name="method">The method to wrap in an expression.</param>
            <param name="arguments">The arguments with which to invoke the <paramref name="method"/>.</param>
            <returns>An expression which invokes the <paramref name="method"/> with the specified <paramref name="arguments"/>.</returns>
        </member>
        <member name="T:System.Data.Services.Client.EntityTracker">
            <summary>
            context
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityTracker.model">
            <summary>Storage for the client model.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityTracker.entityDescriptors">
            <summary>Set of tracked resources</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityTracker.identityToDescriptor">
            <summary>Set of tracked resources by Identity</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityTracker.bindings">
            <summary>Set of tracked bindings</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityTracker.nextChange">
            <summary>change order</summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.#ctor(System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Creates a new instance of EntityTracker class which tracks all instances of entities and links tracked by the context.
            </summary>
            <param name="maxProtocolVersion">max protocol version that the client understands.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.TryGetEntityDescriptor(System.Object)">
            <summary>Gets the entity descriptor corresponding to a particular entity</summary>
            <param name="entity">Entity for which to find the entity descriptor</param>
            <returns>EntityDescriptor for the <paramref name="entity"/> or null if not found</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.GetEntityDescriptor(System.Object)">
            <summary>
            verify the resource being tracked by context
            </summary>
            <param name="resource">resource</param>
            <returns>The given resource.</returns>
            <exception cref="T:System.InvalidOperationException">if resource is not contained</exception>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.TryGetEntityDescriptor(System.String)">
            <summary>
            checks whether there is a tracked entity with the given identity.
            </summary>
            <param name="identity">identity of the entity.</param>
            <returns>returns the entity if the identity matches, otherwise returns null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.AddEntityDescriptor(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Adds the given entity descriptors to the list of the tracked entity descriptors.
            </summary>
            <param name="descriptor">entity descriptor instance to be added.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.DetachResource(System.Data.Services.Client.EntityDescriptor)">
            <summary>the work to detach a resource</summary>
            <param name="resource">resource to detach</param>
            <returns>true if detached</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.DetachResourceIdentity(System.Data.Services.Client.EntityDescriptor)">
            <summary>remove the identity attached to the resource</summary>
            <param name="resource">resource with an identity to detach to detach</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.TryGetLinkDescriptor(System.Object,System.String,System.Object)">
            <summary>
            Gets the link descriptor corresponding to a particular link b/w source and target objects
            </summary>
            <param name="source">Source entity</param>
            <param name="sourceProperty">Property of <paramref name="source"/></param>
            <param name="target">Target entity</param>
            <returns>LinkDescriptor for the relationship b/w source and target entities or null if not found</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.AttachLink(System.Object,System.String,System.Object,System.Data.Services.Client.MergeOption)">
            <summary>
            attach the link with the given source, sourceProperty and target.
            </summary>
            <param name="source">source entity of the link.</param>
            <param name="sourceProperty">name of the property on the source entity.</param>
            <param name="target">target entity of the link.</param>
            <param name="linkMerge">merge option to be used to merge the link if there is an existing link.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.DetachReferenceLink(System.Object,System.String,System.Object,System.Data.Services.Client.MergeOption)">
            <summary>
            find and detach link for reference property
            </summary>
            <param name="source">source entity</param>
            <param name="sourceProperty">source entity property name for target entity</param>
            <param name="target">target entity</param>
            <param name="linkMerge">link merge option</param>
            <returns>true if found and not removed</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.AddLink(System.Data.Services.Client.LinkDescriptor)">
            <summary>
            Add the given link to the link descriptor collection
            </summary>
            <param name="linkDescriptor">link descriptor to add</param>
            <exception cref="T:System.InvalidOperationException">throws argument exception if the link already exists</exception>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.TryRemoveLinkDescriptor(System.Data.Services.Client.LinkDescriptor)">
            <summary>
            Remove the link from the list of tracked link descriptors.
            </summary>
            <param name="linkDescriptor">link to be removed.</param>
            <returns>true if the link was tracked and now removed, otherwise returns false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.GetLinks(System.Object,System.String)">
            <summary>
            get the related links ignoring target entity
            </summary>
            <param name="source">source entity</param>
            <param name="sourceProperty">source entity's property</param>
            <returns>enumerable of related ends</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.DetachExistingLink(System.Data.Services.Client.LinkDescriptor,System.Boolean)">
            <summary>Detach existing link</summary>
            <param name="existingLink">link to detach</param>
            <param name="targetDelete">true if target is being deleted, false otherwise</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.AttachIdentity(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.MergeOption)">
            <summary>response materialization has an identity to attach to the inserted object</summary>
            <param name="entityDescriptorFromMaterializer">entity descriptor containing all the information about the entity from the response.</param>
            <param name="metadataMergeOption">mergeOption based on which EntityDescriptor will be merged.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.AttachLocation(System.Object,System.String,System.Uri)">
            <summary>use location from header to generate initial edit and identity</summary>
            <param name="entity">entity in added state</param>
            <param name="identity">identity as specified in the response header - location header or dataserviceid header.</param>
            <param name="editLink">editlink as specified in the response header - location header.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.InternalAttachEntityDescriptor(System.Data.Services.Client.EntityDescriptor,System.Boolean)">
            <summary>
            Attach entity into the context in the Unchanged state.
            </summary>
            <param name="entityDescriptorFromMaterializer">entity descriptor from the response</param>
            <param name="failIfDuplicated">fail for public api else change existing relationship to unchanged</param>
            <remarks>Caller should validate descriptor instance.</remarks>
            <returns>The attached descriptor, if one already exists in the context and failIfDuplicated is set to false, then the existing instance is returned</returns>
            <exception cref="T:System.InvalidOperationException">if entity is already being tracked by the context</exception>
            <exception cref="T:System.InvalidOperationException">if identity is pointing to another entity</exception>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.TryGetEntity(System.String,System.Data.Services.Client.EntityStates@)">
            <summary>
            Find tracked entity by its resourceUri and update its etag.
            </summary>
            <param name="resourceUri">resource id</param>
            <param name="state">state of entity</param>
            <returns>entity if found else null</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.IncrementChange(System.Data.Services.Client.Descriptor)">
            <summary>
            increment the resource change for sorting during submit changes
            </summary>
            <param name="descriptor">the resource to update the change order</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.EnsureIdentityToResource">
            <summary>create this.identityToResource when necessary</summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.EnsureLinkBindings">
            <summary>create this.bindings when necessary</summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityTracker.ValidateDuplicateIdentity(System.String,System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Ensure an identity is unique and does not point to another resource
            </summary>
            <param name="identity">The identity</param>
            <param name="descriptor">The entity descriptor</param>
        </member>
        <member name="P:System.Data.Services.Client.EntityTracker.Links">
            <summary>
            Returns a collection of all the links (ie. associations) currently being tracked by the context.
            If no links are being tracked, a collection with 0 elements is returned.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityTracker.Entities">
            <summary>
            Returns a collection of all the resources currently being tracked by the context.
            If no resources are being tracked, a collection with 0 elements is returned.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.FunctionDescriptor">
            <summary> Holds information about a ServiceFunction. </summary>
        </member>
        <member name="T:System.Data.Services.Client.InternalODataRequestMessage">
            <summary>
            This is a just a pass through implementation of IODataRequestMessage. This class is used
            for wrapping the inner batch requests or in silverlight when we are using the
            non-silverlight http stack, we need to fire IODataRequestMessage which throws
            when GetStream is called.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.InternalODataRequestMessage.requestMessage">
            <summary>
            IODataRequestMessage implementation that this class wraps.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.InternalODataRequestMessage.allowGetStream">
            <summary>
            Boolean flag to allow calls to GetStream() on this instance
            We want to allow this because WritingRequest and ReadingResponse events on the Windows Phone platform
            requires that we pass a readable stream to user code as arguments.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.InternalODataRequestMessage.cachedRequestStream">
            <summary>
            request stream
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.InternalODataRequestMessage.headers">
            <summary>
            dictionary containing http headers.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.#ctor(Microsoft.Data.OData.IODataRequestMessage,System.Boolean)">
            <summary>
            Creates a new instance of InternalODataRequestMessage.
            </summary>
            <param name="requestMessage">IODataRequestMessage that needs to be wrapped.</param>
            <param name="allowGetStream">boolean flag to allow calls to GetStream() on this instance</param>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.GetHeader(System.String)">
            <summary>
            Returns the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <returns>Returns the value of the header with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.SetHeader(System.String,System.String)">
            <summary>
            Sets the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <param name="headerValue">Value of the header.</param>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.GetStream">
            <summary>
            Gets the stream to be used to write the request payload.
            </summary>
            <returns>Stream to which the request payload needs to be written.</returns>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.Abort">
            <summary>
            Abort the current request.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.BeginGetRequestStream(System.AsyncCallback,System.Object)">
            <summary>
            Begins an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.EndGetRequestStream(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="asyncResult">The pending request for a stream.</param>
            <returns>A System.IO.Stream to use to write request data.</returns>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.BeginGetResponse(System.AsyncCallback,System.Object)">
            <summary>
             Begins an asynchronous request to an Internet resource.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request for a response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.EndGetResponse(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request to an Internet resource.
            </summary>
            <param name="asyncResult">The pending request for a response.</param>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.InternalODataRequestMessage.GetResponse">
            <summary>
            Returns a response from an Internet resource.
            </summary>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="P:System.Data.Services.Client.InternalODataRequestMessage.Headers">
            <summary>
            Returns the collection of request headers.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InternalODataRequestMessage.Url">
            <summary>
            Gets or Sets the request url.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InternalODataRequestMessage.Method">
            <summary>
            Gets or Sets the http method for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InternalODataRequestMessage.Credentials">
            <summary>
            Gets or set the credentials for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InternalODataRequestMessage.Timeout">
            <summary>
            Gets or sets the timeout (in seconds) for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InternalODataRequestMessage.SendChunked">
            <summary>
            Gets or sets a value that indicates whether to send data in segments to the
             Internet resource.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InternalODataRequestMessage.HeaderCollection">
            <summary>
            internal headers dictionary
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.InvokeResponse">
            <summary> Response from an Invoke call. </summary>
        </member>
        <member name="T:System.Data.Services.Client.OperationResponse">
            <summary>Operation response base class</summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationResponse.headers">
            <summary>Http headers of the response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationResponse.statusCode">
            <summary>Http status code of the response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.OperationResponse.innerException">
            <summary>exception to throw during get results</summary>
        </member>
        <member name="M:System.Data.Services.Client.OperationResponse.#ctor(System.Data.Services.Client.HeaderCollection)">
            <summary>
            constructor
            </summary>
            <param name="headers">HTTP headers</param>
        </member>
        <member name="P:System.Data.Services.Client.OperationResponse.Headers">
            <summary>When overridden in a derived class, contains the HTTP response headers associated with a single operation.</summary>
            <returns><see cref="T:System.Collections.IDictionary" /> object that contains name value pairs of headers and values.</returns>
        </member>
        <member name="P:System.Data.Services.Client.OperationResponse.StatusCode">
            <summary>When overridden in a derived class, gets or sets the HTTP response code associated with a single operation.</summary>
            <returns>Integer value that contains response code.</returns>
        </member>
        <member name="P:System.Data.Services.Client.OperationResponse.Error">
            <summary>Gets error thrown by the operation.</summary>
            <returns>An <see cref="T:System.Exception" /> object that contains the error.</returns>
        </member>
        <member name="P:System.Data.Services.Client.OperationResponse.HeaderCollection">
            <summary>Http headers of the response.</summary>
        </member>
        <member name="M:System.Data.Services.Client.InvokeResponse.#ctor(System.Collections.Generic.Dictionary{System.String,System.String})">
            <summary> Consutrcts an InvokeResponse identical to an OperationResponse. </summary>
            <param name="headers">The HTTP headers.</param>
        </member>
        <member name="T:System.Data.Services.Client.LinkInfo">
            <summary>Encapsulates information about a link, or relationship, between entities.</summary>
        </member>
        <member name="F:System.Data.Services.Client.LinkInfo.navigationLink">
            <summary>navigation URI to the related entity.</summary>
        </member>
        <member name="F:System.Data.Services.Client.LinkInfo.associationLink">
            <summary>association URI to the related entity.</summary>
        </member>
        <member name="F:System.Data.Services.Client.LinkInfo.name">
            <summary>the navigation property name</summary>
        </member>
        <member name="M:System.Data.Services.Client.LinkInfo.#ctor(System.String)">
            <summary>
            Creates a LinkInfo with a given properyName
            </summary>
            <param name="propertyName">the name of the navigation property</param>
        </member>
        <member name="P:System.Data.Services.Client.LinkInfo.Name">
            <summary>Gets the name of the link.</summary>
            <returns>The name of the link.</returns>
        </member>
        <member name="P:System.Data.Services.Client.LinkInfo.NavigationLink">
            <summary>Gets the URI that is the navigation property representation of the link.</summary>
            <returns>The navigation link URI.</returns>
        </member>
        <member name="P:System.Data.Services.Client.LinkInfo.AssociationLink">
            <summary>Gets the URI that is the association link.</summary>
            <returns>The URI of the association link.</returns>
        </member>
        <member name="T:System.Data.Services.Client.LoadPropertyResult">
            <summary>wrapper around loading a property from a response</summary>
        </member>
        <member name="T:System.Data.Services.Client.QueryResult">
            <summary>
            Wrapper HttpWebRequest &amp; HttWebResponse
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.ServiceRequest">
            <summary>Originating service request</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.RequestInfo">
            <summary>The request info.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.Request">
            <summary>Originating WebRequest</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.reusableAsyncCopyBuffer">
            <summary>reusuable async copy buffer</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.requestContentStream">
            <summary>content to write to request stream</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.responseMessage">
            <summary>web response, closed when completed</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.responseInfo">
            <summary>Response info once it's available</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.asyncStreamCopyBuffer">
            <summary>buffer when copying async stream to response stream cache</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.outputResponseStream">
            <summary>response stream, returned to other parts of the system</summary>
            <remarks>with async, the asyncResponseStream is copied into this stream</remarks>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.contentType">
            <summary>copy of HttpWebResponse.ContentType</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.contentLength">
            <summary>copy of HttpWebResponse.ContentLength</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.statusCode">
            <summary>copy of HttpWebResponse.StatusCode</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.responseStreamOwner">
            <summary>
            does this own the response stream or does the container of this QueryAsyncResult?
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryResult.usingBuffer">
            <summary>
            if the BeginRead has been called with asyncStreamCopyBuffer, but EndRead has not.
            do not return the buffer to general pool if any question of it being in use.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.#ctor(System.Object,System.String,System.Data.Services.Client.DataServiceRequest,System.Data.Services.Client.ODataRequestMessageWrapper,System.Data.Services.Client.RequestInfo,System.AsyncCallback,System.Object)">
            <summary>constructor</summary>
            <param name="source">source object of async request</param>
            <param name="method">async method name on source object</param>
            <param name="serviceRequest">Originating serviceRequest</param>
            <param name="request">Originating WebRequest</param>
            <param name="requestInfo">The request info of the originating request.</param>
            <param name="callback">user callback</param>
            <param name="state">user state</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.#ctor(System.Object,System.String,System.Data.Services.Client.DataServiceRequest,System.Data.Services.Client.ODataRequestMessageWrapper,System.Data.Services.Client.RequestInfo,System.AsyncCallback,System.Object,System.Data.Services.Client.ContentStream)">
            <summary>constructor</summary>
            <param name="source">source object of async request</param>
            <param name="method">async method name on source object</param>
            <param name="serviceRequest">Originating serviceRequest</param>
            <param name="request">Originating WebRequest</param>
            <param name="requestInfo">The request info of the originating request.</param>
            <param name="callback">user callback</param>
            <param name="state">user state</param>
            <param name="requestContentStream">the stream containing the request data.</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.EndExecuteQuery``1(System.Object,System.String,System.IAsyncResult)">
            <summary>
            Ends the asynchronous query request.
            </summary>
            <typeparam name="TElement">Element type of the result.</typeparam>
            <param name="source">Source object of async request.</param>
            <param name="method">async method name.</param>
            <param name="asyncResult">The asyncResult being ended.</param>
            <returns>Data service response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.GetResponseStream">
            <summary>wrapper for HttpWebResponse.GetResponseStream</summary>
            <returns>stream</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.BeginExecuteQuery">
            <summary>start the asynchronous request</summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.ExecuteQuery">
            <summary>Synchronous web request</summary>
            <returns>The IODataResponseMessage for the Request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.GetResponse``1(System.Data.Services.Client.MaterializeAtom)">
            <summary>
            Returns the response for the request.
            </summary>
            <param name="results">materialized results for the request.</param>
            <typeparam name="TElement">element type of the results.</typeparam>
            <returns>returns the instance of QueryOperationResponse containing the response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.GetResponseWithType(System.Data.Services.Client.MaterializeAtom,System.Type)">
            <summary>
            Returns the response for the request.
            </summary>
            <param name="results">materialized results for the request.</param>
            <param name="elementType">element type of the results.</param>
            <returns>returns the instance of QueryOperationResponse containing the response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.GetMaterializer(System.Data.Services.Client.ProjectionPlan)">
            <summary>
            Create materializer on top of response stream
            </summary>
            <param name="plan">Precompiled projection plan (possibly null).</param>
            <returns>A materializer instance ready to deserialize ther result</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.ProcessResult``1(System.Data.Services.Client.ProjectionPlan)">
            <summary>
            Processes the result for successfull request and produces the actual result of the request.
            </summary>
            <typeparam name="TElement">Element type of the result.</typeparam>
            <param name="plan">The plan to use for the projection, if available in precompiled form.</param>
            <returns>A instance of QueryResponseResult created on top of of the request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.CompletedRequest">
            <summary>cleanup work to do once the request has completed</summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.CreateResponseInfo">
            <summary>
            Create the ResponseInfo.
            </summary>
            <returns>ResponseInfo object.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.GetAsyncResponseStreamCopy">
            <summary>get stream which of copy buffer (via response stream) will be copied into</summary>
            <returns>writtable stream, happens before GetAsyncResponseStreamCopyBuffer</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.GetAsyncResponseStreamCopyBuffer">
            <summary>get buffer which response stream will be copied into</summary>
            <returns>writtable stream</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.PutAsyncResponseStreamCopyBuffer(System.Byte[])">
            <summary>returning a buffer after being done with it</summary>
            <param name="buffer">buffer to return</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.SetHttpWebResponse(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>set the http web response</summary>
            <param name="response">response object</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.HandleCompleted(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>Disposes the request object if it is not null. Invokes the user callback</summary>
            <param name="pereq">the request object</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.AsyncEndGetResponse(System.IAsyncResult)">
            <summary>handle request.BeginGetResponse with request.EndGetResponse and then copy response stream</summary>
            <param name="asyncResult">async result</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.CompleteCheck(System.Data.Services.Client.BaseAsyncResult.PerRequest,System.Data.Services.Client.InternalError)">
            <summary>verify non-null and not completed</summary>
            <param name="pereq">async result</param>
            <param name="errorcode">error code if null or completed</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.ReadResponseStream(System.Data.Services.Client.BaseAsyncResult.AsyncStateBag)">
            <summary>
            Make async calls to read the response stream.
            </summary>
            <param name="asyncStateBag">the state containing the information about the asynchronous operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.AsyncEndRead(System.IAsyncResult)">
            <summary>handle responseStream.BeginRead with responseStream.EndRead</summary>
            <param name="asyncResult">async result</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.CreateMaterializer(System.Data.Services.Client.ProjectionPlan,Microsoft.Data.OData.ODataPayloadKind)">
            <summary>
            Creates an instance of <see cref="T:System.Data.Services.Client.MaterializeAtom"/> for the given plan.
            </summary>
            <param name="plan">The projection plan.</param>
            <param name="payloadKind">expected payload kind.</param>
            <returns>A new materializer instance</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.CopyStreamFromResponseMessage">
            <summary>
            Copies the stream of response message and set it to local outputResponseStream.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryResult.GetStreamFromResponseMessage">
            <summary>
            Sets the stream of response message to local outputResponseStream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryResult.ContentLength">
            <summary>HttpWebResponse.ContentLength</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryResult.ContentType">
            <summary>HttpWebResponse.ContentType</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryResult.StatusCode">
            <summary>HttpWebResponse.StatusCode</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryResult.AllowDirectNetworkStreamReading">
            <summary>Allow reading directly from the network stream</summary>
        </member>
        <member name="F:System.Data.Services.Client.LoadPropertyResult.entity">
            <summary>entity whose property is being loaded</summary>
        </member>
        <member name="F:System.Data.Services.Client.LoadPropertyResult.plan">
            <summary>Projection plan for loading results; possibly null.</summary>
        </member>
        <member name="F:System.Data.Services.Client.LoadPropertyResult.propertyName">
            <summary>name of the property on the entity that is being loaded</summary>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResult.#ctor(System.Object,System.String,System.Data.Services.Client.DataServiceContext,System.Data.Services.Client.ODataRequestMessageWrapper,System.AsyncCallback,System.Object,System.Data.Services.Client.DataServiceRequest,System.Data.Services.Client.ProjectionPlan,System.Boolean)">
            <summary>constructor</summary>
            <param name="entity">entity</param>
            <param name="propertyName">name of collection or reference property to load</param>
            <param name="context">Originating context</param>
            <param name="request">Originating WebRequest</param>
            <param name="callback">user callback</param>
            <param name="state">user state</param>
            <param name="dataServiceRequest">request object.</param>
            <param name="plan">Projection plan for materialization; possibly null.</param>
            <param name="isContinuation">Whether this request is a continuation request.</param>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResult.LoadProperty">
            <summary>
            loading a property from a response
            </summary>
            <returns>QueryOperationResponse instance containing information about the response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResult.CreateResponseInfo">
            <summary>
            Creates the ResponseInfo object.
            </summary>
            <returns>ResponseInfo object.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResult.ReadByteArrayWithContentLength(System.IO.Stream,System.Int32)">
            <summary>
            Reads the data from the response stream into a buffer using the content length.
            </summary>
            <param name="responseStream">Response stream.</param>
            <param name="totalLength">Length of data to read.</param>
            <returns>byte array containing read data.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResult.ReadByteArrayChunked(System.IO.Stream)">
            <summary>Reads the data from the response stream in chunks.</summary>
            <param name="responseStream">Response stream.</param>
            <returns>byte array containing read data.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResult.ReadPropertyFromAtom(System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Load property data from an ATOM response
            </summary>
            <param name="property">The property being loaded</param>
            <returns>property values as IEnumerable.</returns>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResult.ReadPropertyFromRawData(System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Load property data form a raw response
            </summary>
            <param name="property">The property being loaded</param>
            <returns>property values as IEnumerable.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataCollectionMaterializer">
            <summary>
            Used to materialize a collection of primitive or complex values from an <see cref="T:System.Data.Services.Client.Materialization.ODataCollectionMaterializer"/>.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer">
            <summary>
            Used to materialize a value from an <see cref="T:Microsoft.Data.OData.ODataMessageReader"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.SingleResult">
            <summary>Optional field that indicates if we should expect a single result to materialize, as opposed to a collection.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.messageReader">
            <summary>Reader for a message that contains a value or property.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.hasReadValue">
            <summary>Has the value been read.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Type,System.Nullable{System.Boolean})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer"/> class.
            </summary>
            <param name="reader">The reader.</param>
            <param name="context">The materializer context.</param>
            <param name="expectedType">The expected type.</param>
            <param name="singleResult">The single result.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.ClearLog">
            <summary>Clears the materialization log of activity.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.ApplyLogToContext">
            <summary>Applies the materialization log to the context.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.ReadImplementation">
            <summary>
            Implementation of Read>.
            </summary>
            <returns>
            Return value of Read/>
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.OnDispose">
            <summary>
            Called when IDisposable.Dispose is called.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.ReadWithExpectedType(Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.IEdmTypeReference)">
            <summary>
            Reads a value from the message reader.
            </summary>
            <param name="expectedClientType">The expected client type being materialized into.</param>
            <param name="expectedReaderType">The expected type for the underlying reader.</param>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.CurrentFeed">
            <summary>
            Feed being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.CurrentEntry">
            <summary>
            Entry being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.IsEndOfStream">
            <summary>
            Whether we have finished processing the current data stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.CountValue">
            <summary>
            The count tag's value, if requested
            </summary>
            <returns>The count value returned from the server</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.MaterializeEntryPlan">
            <summary>
            Function to materialize an entry and produce a value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.IsDisposed">
            <summary>
            Returns true if the materializer has been disposed
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataMessageReaderMaterializer.Format">
            <summary>
            The format of the response being materialized.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.currentValue">
            <summary>Current value being materialized; possibly null.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Type,System.Nullable{System.Boolean})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataCollectionMaterializer"/> class.
            </summary>
            <param name="reader">The reader.</param>
            <param name="materializerContext">The materializer context.</param>
            <param name="expectedType">The expected type.</param>
            <param name="singleResult">The single result.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.ReadWithExpectedType(Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.IEdmTypeReference)">
            <summary>
            Reads a value from the message reader.
            </summary>
            <param name="expectedClientType">The expected client type being materialized into.</param>
            <param name="expectedReaderType">The expected type for the underlying reader.</param>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.CurrentValue">
            <summary>
            Current value being materialized; possibly null.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable">
            <summary>
            Class that wraps the collection reader to get values from the collection reader
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable.collectionReader">
            <summary>
            Collection Reader
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable.#ctor(Microsoft.Data.OData.ODataCollectionReader)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable"/> class.
            </summary>
            <param name="collectionReader">The collection reader.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable.GetEnumerator">
            <summary>
            Returns an enumerator that iterates through a collection.
            </summary>
            <returns>
            An <see cref="T:System.Collections.IEnumerator"/> object that can be used to iterate through the collection.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable.MoveNext">
            <summary>
            Advances the enumerator to the next element of the collection.
            </summary>
            <returns>
            true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
            </returns>
            <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created. </exception>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable.Reset">
            <summary>
            Sets the enumerator to its initial position, which is before the first element in the collection.
            </summary>
            <exception cref="T:System.InvalidOperationException">The collection was modified after the enumerator was created. </exception>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataCollectionMaterializer.NonEntityItemsEnumerable.Current">
            <summary>
            Gets the current element in the collection.
            </summary>
            <returns>The current element in the collection.</returns>
            <exception cref="T:System.InvalidOperationException">The enumerator is positioned before the first element of the collection or after the last element.-or- The collection was modified after the enumerator was created.</exception>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer">
            <summary>
            Materializes entities from a sequence of ODataEntry objects
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.format">
            <summary>The format of the response being materialized.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.feedEntries">
            <summary>The entries enumerator</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.isFinished">
            <summary>Is the enumerator finished.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.#ctor(System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataEntry},System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Data.Services.Client.Materialization.EntityTrackingAdapter,System.Data.Services.Client.QueryComponents,System.Type,System.Data.Services.Client.ProjectionPlan,Microsoft.Data.OData.ODataFormat)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer"/> class.
            </summary>
            <param name="entries">The entries.</param>
            <param name="materializerContext">The materializer context.</param>
            <param name="entityTrackingAdapter">The entity tracking adapter.</param>
            <param name="queryComponents">The query components.</param>
            <param name="expectedType">The expected type.</param>
            <param name="materializeEntryPlan">The materialize entry plan.</param>
            <param name="format">The format.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.ReadNextFeedOrEntry">
            <summary>
            Reads the next feed or entry.
            </summary>
            <returns>
            True if an entry was read, otherwise false
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.OnDispose">
            <summary>
            Called when IDisposable.Dispose is called.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.CurrentFeed">
            <summary>
            Feed being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.CurrentEntry">
            <summary>
            Entry being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.CountValue">
            <summary>
            The count tag's value, if requested
            </summary>
            <returns>The count value returned from the server</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.IsCountable">
            <summary>
            Returns true if the underlying object used for counting is available
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.IsEndOfStream">
            <summary>
            Whether we have finished processing the current data stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.IsDisposed">
            <summary>
            Returns true if the materializer has been disposed
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataEntriesEntityMaterializer.Format">
            <summary>
            The format of the response being materialized.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker">
            <summary>
            Use this class to invoke projection methods from <see cref="T:System.Data.Services.Client.Materialization.ODataEntityMaterializer"/>.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.EnumerateAsElementType``1(System.Collections.IEnumerable)">
            <summary>Enumerates casting each element to a type.</summary>
            <typeparam name="T">Element type to enumerate over.</typeparam>
            <param name="source">Element source.</param>
            <returns>
            An IEnumerable&lt;T&gt; that iterates over the specified <paramref name="source"/>.
            </returns>
            <remarks>
            This method should be unnecessary with .NET 4.0 covariance support.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ListAsElementType``2(System.Object,System.Collections.Generic.IEnumerable{``0})">
            <summary>Creates a list to a target element type.</summary>
            <param name="materializer">Materializer used to flow link tracking.</param>
            <typeparam name="T">Element type to enumerate over.</typeparam>
            <typeparam name="TTarget">Element type for list.</typeparam>
            <param name="source">Element source.</param>
            <returns>
            An IEnumerable&lt;T&gt; that iterates over the specified <paramref name="source"/>.
            </returns>
            <remarks>
            This method should be unnecessary with .NET 4.0 covariance support.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ProjectionCheckValueForPathIsNull(System.Object,System.Type,System.Object)">
            <summary>Checks whether the entity on the specified <paramref name="path"/> is null.</summary>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="path">Path to pull value for.</param>
            <returns>Whether the specified <paramref name="path"/> is null.</returns>
            <remarks>
            This method will not instantiate entity types on the path.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ProjectionSelect(System.Object,System.Object,System.Type,System.Type,System.Object,System.Func{System.Object,System.Object,System.Type,System.Object})">
            <summary>Provides support for Select invocations for projections.</summary>
            <param name="materializer">Materializer under which projection is taking place.</param>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="resultType">Expected result type.</param>
            <param name="path">Path to traverse.</param>
            <param name="selector">Selector callback.</param>
            <returns>An enumerable with the select results.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ProjectionGetEntry(System.Object,System.String)">
            <summary>Provides support for getting payload entries during projections.</summary>
            <param name="entry">Entry to get sub-entry from.</param>
            <param name="name">Name of sub-entry.</param>
            <returns>The sub-entry (never null).</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ProjectionGetEntryOrNull(System.Object,System.String)">
            <summary>Provides support for getting payload entries or null during projections.</summary>
            <param name="entry">Entry to get sub-entry from.</param>
            <param name="name">Name of sub-entry.</param>
            <returns>The sub-entry or null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ProjectionInitializeEntity(System.Object,System.Object,System.Type,System.Type,System.String[],System.Func{System.Object,System.Object,System.Type,System.Object}[])">
            <summary>Initializes a projection-driven entry (with a specific type and specific properties).</summary>
            <param name="materializer">Materializer under which projection is taking place.</param>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="resultType">Expected result type.</param>
            <param name="properties">Properties to materialize.</param>
            <param name="propertyValues">Functions to get values for functions.</param>
            <returns>The initialized entry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ProjectionValueForPath(System.Object,System.Object,System.Type,System.Object)">
            <summary>Projects a simple value from the specified <paramref name="path"/>.</summary>
            <param name="materializer">Materializer under which projection is taking place.</param>
            <param name="entry">Root entry for paths.</param>
            <param name="expectedType">Expected type for <paramref name="entry"/>.</param>
            <param name="path">Path to pull value for.</param>
            <returns>The value for the specified <paramref name="path"/>.</returns>
            <remarks>
            This method will not instantiate entity types, except to satisfy requests
            for payload-driven feeds or leaf entities.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.DirectMaterializePlan(System.Object,System.Object,System.Type)">
            <summary>Materializes an entry with no special selection.</summary>
            <param name="materializer">Materializer under which materialization should take place.</param>
            <param name="entry">Entry with object to materialize.</param>
            <param name="expectedEntryType">Expected type for the entry.</param>
            <returns>The materialized instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataEntityMaterializerInvoker.ShallowMaterializePlan(System.Object,System.Object,System.Type)">
            <summary>Materializes an entry without including in-lined expanded links.</summary>
            <param name="materializer">Materializer under which materialization should take place.</param>
            <param name="entry">Entry with object to materialize.</param>
            <param name="expectedEntryType">Expected type for the entry.</param>
            <returns>The materialized instance.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataItemExtensions">
            <summary>
            Extension methods for ODataItems
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.GetMaterializedValue(Microsoft.Data.OData.ODataProperty)">
            <summary>
            Gets the materialized value.
            </summary>
            <param name="property">The property.</param>
            <returns>The materialized value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.HasMaterializedValue(Microsoft.Data.OData.ODataProperty)">
            <summary>
            Determines whether a value has been materialized.
            </summary>
            <param name="property">The property.</param>
            <returns><c>true</c> if the value has been materialized; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.SetMaterializedValue(Microsoft.Data.OData.ODataProperty,System.Object)">
            <summary>
            Sets the materialized value.
            </summary>
            <param name="property">The property.</param>
            <param name="materializedValue">The materialized value.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.GetMaterializedValue(Microsoft.Data.OData.ODataComplexValue)">
            <summary>
            Gets the materialized value.
            </summary>
            <param name="complexValue">The complex value.</param>
            <returns>The materialized value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.HasMaterializedValue(Microsoft.Data.OData.ODataComplexValue)">
            <summary>
            Determines whether a value has been materialized.
            </summary>
            <param name="complexValue">The complex value.</param>
            <returns><c>true</c> if the value has been materialized; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.SetMaterializedValue(Microsoft.Data.OData.ODataComplexValue,System.Object)">
            <summary>
            Sets the materialized value.
            </summary>
            <param name="complexValue">The complex value.</param>
            <param name="materializedValue">The materialized value.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.GetMaterializedValueCore(Microsoft.Data.OData.ODataAnnotatable)">
            <summary>
            Gets the materialized value.
            </summary>
            <param name="annotatableObject">The annotatable object.</param>
            <returns>The materialized value</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.HasMaterializedValueCore(Microsoft.Data.OData.ODataAnnotatable)">
            <summary>
            Determines whether a value has been materialized.
            </summary>
            <param name="annotatableObject">The annotatable object.</param>
            <returns><c>true</c> if the value has been materialized; otherwise, <c>false</c>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataItemExtensions.SetMaterializedValueCore(Microsoft.Data.OData.ODataAnnotatable,System.Object)">
            <summary>
            Sets the materialized value.
            </summary>
            <param name="annotatableObject">The annotatable object.</param>
            <param name="materializedValue">The materialized value.</param>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataItemExtensions.MaterializerPropertyValue">
            <summary>
            Annotation class for the materialized value
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataItemExtensions.MaterializerPropertyValue.Value">
            <summary>
            Gets or sets the value.
            </summary>
            <value>
            The value.
            </value>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataLinksMaterializer">
            <summary>
            Materializes from $links
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataLinksMaterializer.links">
            <summary>The links value read from the message.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataLinksMaterializer.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Type,System.Nullable{System.Boolean})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataLinksMaterializer"/> class.
            </summary>
            <param name="reader">The reader.</param>
            <param name="materializerContext">The materializer context.</param>
            <param name="expectedType">The expected type.</param>
            <param name="singleResult">The single result.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataLinksMaterializer.ReadWithExpectedType(Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.IEdmTypeReference)">
            <summary>
            Reads from message reader.
            </summary>
            <param name="expectedClientType">The expected client type being materialized into.</param>
            <param name="expectedReaderType">The expected type for the underlying reader.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataLinksMaterializer.ReadLinks">
            <summary>
            Reads the links.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataLinksMaterializer.CountValue">
            <summary>
            Gets the count value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataLinksMaterializer.CurrentValue">
            <summary>
            Current value being materialized; possibly null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataLinksMaterializer.IsCountable">
            <summary>
            Returns true if the underlying object used for counting is available
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataPropertyMaterializer">
            <summary>
            Used to materialize a property from an <see cref="T:Microsoft.Data.OData.ODataMessageReader"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataPropertyMaterializer.currentValue">
            <summary>Current value being materialized; possibly null.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataPropertyMaterializer.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Type,System.Nullable{System.Boolean})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataPropertyMaterializer"/> class.
            </summary>
            <param name="reader">The reader.</param>
            <param name="materializerContext">The materializer context.</param>
            <param name="expectedType">The expected type.</param>
            <param name="singleResult">The single result.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataPropertyMaterializer.ReadWithExpectedType(Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.IEdmTypeReference)">
            <summary>
            Reads a value from the message reader.
            </summary>
            <param name="expectedClientType">The expected client type being materialized into.</param>
            <param name="expectedReaderType">The expected type for the underlying reader.</param>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataPropertyMaterializer.CurrentValue">
            <summary>
            Current value being materialized; possibly null.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ODataValueMaterializer">
            <summary>
            Used to materialize a value from an <see cref="T:Microsoft.Data.OData.ODataMessageReader"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ODataValueMaterializer.currentValue">
            <summary>Current value being materialized; possibly null.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataValueMaterializer.#ctor(Microsoft.Data.OData.ODataMessageReader,System.Data.Services.Client.Materialization.IODataMaterializerContext,System.Type,System.Nullable{System.Boolean})">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Materialization.ODataValueMaterializer"/> class.
            </summary>
            <param name="reader">The reader.</param>
            <param name="materializerContext">The materializer context.</param>
            <param name="expectedType">The expected type.</param>
            <param name="singleResult">Is a single result expected.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ODataValueMaterializer.ReadWithExpectedType(Microsoft.Data.Edm.IEdmTypeReference,Microsoft.Data.Edm.IEdmTypeReference)">
            <summary>
            Reads a value from the message reader.
            </summary>
            <param name="expectedClientType">The expected client type being materialized into.</param>
            <param name="expectedReaderType">The expected type for the underlying reader.</param>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.ODataValueMaterializer.CurrentValue">
            <summary>
            Current value being materialized; possibly null.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.ReadingEntityInfo">
            <summary>
            To cache the entity instance as annotation for firing ReadingEntity event
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ReadingEntityInfo.EntryPayload">
            <summary>XDocument instance to cache the payload.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.ReadingEntityInfo.BaseUri">
            <summary>BaseUri for the entry payload.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ReadingEntityInfo.#ctor(System.Xml.Linq.XElement,System.Uri)">
            <summary>
            Creates a new instance of ReadingEntityInfo
            </summary>
            <param name="payload">XElement containing the entry payload.</param>
            <param name="uri">base uri for the entry payload.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.ReadingEntityInfo.BufferAndCacheEntryPayload(Microsoft.Data.OData.ODataEntry,System.Xml.XmlReader,System.Uri)">
            <summary>
            Returns the new XmlReader to cache the payload for firing ReadingEntity event.
            </summary>
            <param name="entry">ODataEntry instance that is currently getting deserialized.</param>
            <param name="entryReader">XmlReader that is used to read the payload.</param>
            <param name="baseUri">BaseUri for the entry payload.</param>
            <returns>XmlReader instance that needs to be used to read the payload for the given odataentry.</returns>
        </member>
        <member name="T:System.Data.Services.Client.MemberAssignmentAnalysis">
            <summary>
            Use this class to analyze a member assignment and figure out the
            target path for a member-init on an entity type.
            </summary>
            <remarks>
            This class will also detect cases in which the assignment
            expression refers to cases which we shouldn't handle during
            materialization, such as references to multiple entity types
            as sources (or refering to no source at all).
            </remarks>
        </member>
        <member name="T:System.Data.Services.Client.ALinqExpressionVisitor">
            <summary>
            base vistor class for walking an expression tree bottom up.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.Visit(System.Linq.Expressions.Expression)">
            <summary>
            Main visit method for ALinqExpressionVisitor
            </summary>
            <param name="exp">The expression to visit</param>
            <returns>The visited expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitBinding(System.Linq.Expressions.MemberBinding)">
            <summary>
            MemberBinding visit method
            </summary>
            <param name="binding">The MemberBinding expression to visit</param>
            <returns>The visited MemberBinding expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitElementInitializer(System.Linq.Expressions.ElementInit)">
            <summary>
            ElementInit visit method
            </summary>
            <param name="initializer">The ElementInit expression to visit</param>
            <returns>The visited ElementInit expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitUnary(System.Linq.Expressions.UnaryExpression)">
            <summary>
            UnaryExpression visit method
            </summary>
            <param name="u">The UnaryExpression expression to visit</param>
            <returns>The visited UnaryExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitBinary(System.Linq.Expressions.BinaryExpression)">
            <summary>
            BinaryExpression visit method
            </summary>
            <param name="b">The BinaryExpression expression to visit</param>
            <returns>The visited BinaryExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitTypeIs(System.Linq.Expressions.TypeBinaryExpression)">
            <summary>
            TypeBinaryExpression visit method
            </summary>
            <param name="b">The TypeBinaryExpression expression to visit</param>
            <returns>The visited TypeBinaryExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitConstant(System.Linq.Expressions.ConstantExpression)">
            <summary>
            ConstantExpression visit method
            </summary>
            <param name="c">The ConstantExpression expression to visit</param>
            <returns>The visited ConstantExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitConditional(System.Linq.Expressions.ConditionalExpression)">
            <summary>
            ConditionalExpression visit method
            </summary>
            <param name="c">The ConditionalExpression expression to visit</param>
            <returns>The visited ConditionalExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitParameter(System.Linq.Expressions.ParameterExpression)">
            <summary>
            ParameterExpression visit method
            </summary>
            <param name="p">The ParameterExpression expression to visit</param>
            <returns>The visited ParameterExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitMemberAccess(System.Linq.Expressions.MemberExpression)">
            <summary>
            MemberExpression visit method
            </summary>
            <param name="m">The MemberExpression expression to visit</param>
            <returns>The visited MemberExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            MethodCallExpression visit method
            </summary>
            <param name="m">The MethodCallExpression expression to visit</param>
            <returns>The visited MethodCallExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitExpressionList(System.Collections.ObjectModel.ReadOnlyCollection{System.Linq.Expressions.Expression})">
            <summary>
            Expression list visit method
            </summary>
            <param name="original">The expression list to visit</param>
            <returns>The visited expression list</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitMemberAssignment(System.Linq.Expressions.MemberAssignment)">
            <summary>
            MemberAssignment visit method
            </summary>
            <param name="assignment">The MemberAssignment to visit</param>
            <returns>The visited MemberAssignmentt</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitMemberMemberBinding(System.Linq.Expressions.MemberMemberBinding)">
            <summary>
            MemberMemberBinding visit method
            </summary>
            <param name="binding">The MemberMemberBinding to visit</param>
            <returns>The visited MemberMemberBinding</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitMemberListBinding(System.Linq.Expressions.MemberListBinding)">
            <summary>
            MemberListBinding visit method
            </summary>
            <param name="binding">The MemberListBinding to visit</param>
            <returns>The visited MemberListBinding</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitBindingList(System.Collections.ObjectModel.ReadOnlyCollection{System.Linq.Expressions.MemberBinding})">
            <summary>
            Binding List visit method
            </summary>
            <param name="original">The Binding list to visit</param>
            <returns>The visited Binding list</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitElementInitializerList(System.Collections.ObjectModel.ReadOnlyCollection{System.Linq.Expressions.ElementInit})">
            <summary>
            ElementInit expression list visit method
            </summary>
            <param name="original">The ElementInit expression list to visit</param>
            <returns>The visited ElementInit expression list </returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitLambda(System.Linq.Expressions.LambdaExpression)">
            <summary>
            LambdaExpression visit method
            </summary>
            <param name="lambda">The LambdaExpression to visit</param>
            <returns>The visited LambdaExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitNew(System.Linq.Expressions.NewExpression)">
            <summary>
            NewExpression visit method
            </summary>
            <param name="nex">The NewExpression to visit</param>
            <returns>The visited NewExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitMemberInit(System.Linq.Expressions.MemberInitExpression)">
            <summary>
            MemberInitExpression visit method
            </summary>
            <param name="init">The MemberInitExpression to visit</param>
            <returns>The visited MemberInitExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitListInit(System.Linq.Expressions.ListInitExpression)">
            <summary>
            ListInitExpression visit method
            </summary>
            <param name="init">The ListInitExpression to visit</param>
            <returns>The visited ListInitExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitNewArray(System.Linq.Expressions.NewArrayExpression)">
            <summary>
            NewArrayExpression visit method
            </summary>
            <param name="na">The NewArrayExpression to visit</param>
            <returns>The visited NewArrayExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ALinqExpressionVisitor.VisitInvocation(System.Linq.Expressions.InvocationExpression)">
            <summary>
            InvocationExpression visit method
            </summary>
            <param name="iv">The InvocationExpression to visit</param>
            <returns>The visited InvocationExpression</returns>
        </member>
        <member name="F:System.Data.Services.Client.MemberAssignmentAnalysis.EmptyExpressionArray">
            <summary>Empty expression array; immutable.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MemberAssignmentAnalysis.entity">
            <summary>Entity in scope for the lambda that's providing the parameter.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MemberAssignmentAnalysis.incompatibleAssignmentsException">
            <summary>A non-null value when incompatible paths were found for an entity initializer.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MemberAssignmentAnalysis.multiplePathsFound">
            <summary>Whether multiple paths were found for this analysis.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MemberAssignmentAnalysis.pathFromEntity">
            <summary>Path traversed from the entry field.</summary>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.#ctor(System.Linq.Expressions.Expression)">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.MemberAssignmentAnalysis"/> instance.</summary>
            <param name="entity">Entity in scope for the lambda that's providing the parameter.</param>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.Analyze(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <summary>Analyzes an assignment from a member-init expression.</summary>
            <param name="entityInScope">Entity in scope for the lambda that's providing the parameter.</param>
            <param name="assignmentExpression">The expression to analyze.</param>
            <returns>The analysis results.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.CheckCompatibleAssignments(System.Type,System.Data.Services.Client.MemberAssignmentAnalysis@)">
            <summary>
            Checks whether the this and a <paramref name="previous"/>
            paths for assignments are compatible.
            </summary>
            <param name="targetType">Type being initialized.</param>
            <param name="previous">Previously seen member accesses (null if this is the first).</param>
            <returns>An exception to be thrown if assignments are not compatible; null otherwise.</returns>
            <remarks>
            This method does not set the IncompatibleAssignmentsException property on either
            analysis instance.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.Visit(System.Linq.Expressions.Expression)">
            <summary>Visits the specified <paramref name="expression"/>.</summary>
            <param name="expression">Expression to visit.</param>
            <returns>The visited expression.</returns>
            <remarks>This method is overriden to short-circuit analysis once an error is found.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.VisitConditional(System.Linq.Expressions.ConditionalExpression)">
            <summary>Visits a conditional expression.</summary>
            <param name="c">Expression to visit.</param>
            <returns>The same expression.</returns>
            <remarks>
            There are three expressions of interest: the Test, the IfTrue
            branch, and the IfFalse branch. If this is a NullCheck expression,
            then we can traverse the non-null branch, which will be the
            correct path of the resulting value.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.VisitParameter(System.Linq.Expressions.ParameterExpression)">
            <summary>Parameter visit method.</summary>
            <param name="p">Parameter to visit.</param>
            <returns>The same expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.VisitNew(System.Linq.Expressions.NewExpression)">
            <summary>
            NewExpression visit method
            </summary>
            <param name="nex">The NewExpression to visit</param>
            <returns>The visited NewExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.VisitMemberInit(System.Linq.Expressions.MemberInitExpression)">
            <summary>Visits a nested member init.</summary>
            <param name="init">Expression to visit.</param>
            <returns>The same expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.VisitMemberAccess(System.Linq.Expressions.MemberExpression)">
            <summary>Visits a member access expression.</summary>
            <param name="m">Access to visit.</param>
            <returns>The same expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)">
            <summary>Visits a method call expression.</summary>
            <param name="call">Method call to visit.</param>
            <returns>The same call.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.GetExpressionsBeyondTargetEntity">
            <summary>Gets the expressions that go beyond the last entity.</summary>
            <returns>An array of member expressions coming after the last entity.</returns>
            <remarks>Currently a single member access is supported.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.GetExpressionsToTargetEntity">
            <summary>Gets the expressions that "walk down" to the last entity, ignoring the last expression.</summary>
            <returns>An array of member expressions down to, but excluding, the last entity.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.GetExpressionsToTargetEntity(System.Boolean)">
            <summary>Gets the expressions that "walk down" to the last entity.</summary>
            <param name="ignoreLastExpression">whether to ignore the last expression or not.</param>
            <returns>An array of member expressions down to the last entity.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.CheckCompatibleAssignments(System.Type,System.Linq.Expressions.Expression[],System.Linq.Expressions.Expression[])">
            <summary>
            Checks whether the <paramref name="previous"/> and <paramref name="candidate"/>
            paths for assignments are compatible.
            </summary>
            <param name="targetType">Type being initialized.</param>
            <param name="previous">Previously seen member accesses.</param>
            <param name="candidate">Member assignments under evaluate.</param>
            <returns>An exception to be thrown if assignments are not compatible; null otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.CheckCompatibleAssignmentsFail(System.Type,System.Linq.Expressions.Expression[],System.Linq.Expressions.Expression[])">
            <summary>Creates an exception to be used when CheckCompatibleAssignment fails.</summary>
            <param name="targetType">Type being initialized.</param>
            <param name="previous">Previously seen member accesses.</param>
            <param name="candidate">Member assignments under evaluate.</param>
            <returns>A new exception with diagnostic information.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MemberAssignmentAnalysis.CheckCompatibleAssigmentExpression(System.Linq.Expressions.Expression,System.Type,System.Data.Services.Client.MemberAssignmentAnalysis@)">
            <summary>
            If there is a MemberInitExpression 'new Person { ID = p.ID, Friend = new Person { ID = p.Friend.ID }}'
            or a NewExpression 'new { ID = p.ID, Friend = new { ID = p.Friend.ID }}',
            this method validates against the RHS of the member assigment, the expression "p.ID" for example.
            </summary>
            <param name="expressionToAssign">The expression to validate.</param>
            <param name="initType">Type of the MemberInit or the New expression.</param>
            <param name="previousNested">The outter nested initializer of the current initializer we are checking.</param>
            <returns>true if the expression to assign is fine; false otherwise.</returns>
        </member>
        <member name="P:System.Data.Services.Client.MemberAssignmentAnalysis.IncompatibleAssignmentsException">
            <summary>A non-null value when incompatible paths were found for an entity initializer.</summary>
        </member>
        <member name="P:System.Data.Services.Client.MemberAssignmentAnalysis.MultiplePathsFound">
            <summary>Whether multiple paths were found during analysis.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ODataMessageReadingHelper">
            <summary>
            Helper class for creating ODataLib readers, settings, and other read-related classes based on an instance of <see cref="T:System.Data.Services.Client.ResponseInfo"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataMessageReadingHelper.responseInfo">
            <summary>The current response info.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataMessageReadingHelper.#ctor(System.Data.Services.Client.ResponseInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ODataMessageReadingHelper"/> class.
            </summary>
            <param name="responseInfo">The response info.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataMessageReadingHelper.CreateSettings(System.Func{Microsoft.Data.OData.ODataEntry,System.Xml.XmlReader,System.Uri,System.Xml.XmlReader})">
            <summary>
            Create message reader settings for consuming responses.
            </summary>
            <param name="entryXmlCustomizer">Optional XML entry customization callback to be used.</param>
            <returns>Newly created message reader settings.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataMessageReadingHelper.CreateReader(Microsoft.Data.OData.IODataResponseMessage,Microsoft.Data.OData.ODataMessageReaderSettings)">
            <summary>
            Creates a new the reader for the given response message and settings.
            </summary>
            <param name="responseMessage">The response message.</param>
            <param name="settings">The settings.</param>
            <returns>Newly created message reader.</returns>
        </member>
        <member name="T:System.Data.Services.Client.ODataMessageWritingHelper">
            <summary>
            Helper class for creating ODataLib writers, settings, and other write-related classes based on an instance of <see cref="T:System.Data.Services.Client.RequestInfo"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataMessageWritingHelper.requestInfo">
            <summary>The current request info.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataMessageWritingHelper.#ctor(System.Data.Services.Client.RequestInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ODataMessageWritingHelper"/> class.
            </summary>
            <param name="requestInfo">The request info.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataMessageWritingHelper.CreateSettings(System.Func{Microsoft.Data.OData.ODataEntry,System.Xml.XmlWriter,System.Xml.XmlWriter},System.Action{Microsoft.Data.OData.ODataEntry,System.Xml.XmlWriter,System.Xml.XmlWriter},System.Boolean)">
            <summary>
            Create message writer settings for producing requests.
            </summary>
            <param name="startEntryXmlCustomizationCallback">Optional XML entry customization callback to be used for the start of entries.</param>
            <param name="endEntryXmlCustomizationCallback">Optional XML entry customization callback to be used for the end of entries.</param>
            <param name="isBatchPartRequest">if set to <c>true</c> indicates that this is a part of a batch request.</param>
            <returns>Newly created message writer settings.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataMessageWritingHelper.CreateWriter(Microsoft.Data.OData.IODataRequestMessage,Microsoft.Data.OData.ODataMessageWriterSettings,System.Boolean)">
            <summary>
            Creates a writer for the given request message and settings.
            </summary>
            <param name="requestMessage">The request message.</param>
            <param name="writerSettings">The writer settings.</param>
            <param name="isParameterPayload">true if the writer is intended to for a parameter payload, false otherwise.</param>
            <returns>Newly created writer.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataMessageWritingHelper.CreateRequestMessage(System.Data.Services.Client.BuildingRequestEventArgs)">
            <summary>
            Creates a request message with the given arguments.
            </summary>
            <param name="requestMessageArgs">The request message args.</param>
            <returns>Newly created request message.</returns>
        </member>
        <member name="T:System.Data.Services.Client.ODataRequestMessageWrapper">
            <summary>
            IODataRequestMessage interface implementation.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataRequestMessageWrapper.requestMessage">
            <summary>Request Url.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataRequestMessageWrapper.requestInfo">
            <summary>RequestInfo instance.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.#ctor(System.Data.Services.Client.DataServiceClientRequestMessage,System.Data.Services.Client.RequestInfo,System.Data.Services.Client.Descriptor)">
            <summary>
            Creates a new instance of ODataRequestMessage. This constructor is used for top level requests.
            </summary>
            <param name="requestMessage">RequestMessage that needs to be wrapped.</param>
            <param name="requestInfo">Request Info.</param>
            <param name="descriptor">Descriptor for this request.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.CreateBatchPartRequestMessage(Microsoft.Data.OData.ODataBatchWriter,System.Data.Services.Client.BuildingRequestEventArgs,System.Data.Services.Client.RequestInfo)">
            <summary>
            Create a request message for a batch part from the batch writer. This method copies request headers
            from <paramref name="requestMessageArgs"/> in addition to the method and Uri.
            </summary>
            <param name="batchWriter">ODataBatchWriter instance to build operation message from.</param>
            <param name="requestMessageArgs">RequestMessageArgs for the request.</param>
            <param name="requestInfo">RequestInfo instance.</param>
            <returns>an instance of ODataRequestMessageWrapper.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.CreateRequestMessageWrapper(System.Data.Services.Client.BuildingRequestEventArgs,System.Data.Services.Client.RequestInfo)">
            <summary>
            Create a request message for a non-batch requests and outer $batch request. This method copies request headers
            from <paramref name="requestMessageArgs"/> in addition to the method and Uri.
            </summary>
            <param name="requestMessageArgs">RequestMessageArgs for the request.</param>
            <param name="requestInfo">RequestInfo instance.</param>
            <returns>an instance of ODataRequestMessageWrapper.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.CreateWriter(Microsoft.Data.OData.ODataMessageWriterSettings,System.Boolean)">
            <summary>
            Create ODataMessageWriter given the writer settings.
            </summary>
            <param name="writerSettings">Writer settings.</param>
            <param name="isParameterPayload">true if the writer is intended to for a parameter payload, false otherwise.</param>
            <returns>An instance of ODataMessageWriter.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.Abort">
            <summary>
            Abort the current request.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.SetHeader(System.String,System.String)">
            <summary>
            Sets the value of an HTTP header.
            </summary>
            <param name="headerName">The name of the header to set.</param>
            <param name="headerValue">The value of the HTTP header or 'null' if the header should be removed.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.BeginGetRequestStream(System.AsyncCallback,System.Object)">
            <summary>
            Begins an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.EndGetRequestStream(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="asyncResult">The pending request for a stream.</param>
            <returns>A System.IO.Stream to use to write request data.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.SetRequestStream(System.Data.Services.Client.ContentStream)">
            <summary>
            Sets the request stream.
            </summary>
            <param name="requestStreamContent">The content stream to copy into the request stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.BeginGetResponse(System.AsyncCallback,System.Object)">
            <summary>
             Begins an asynchronous request to an Internet resource.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request for a response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.EndGetResponse(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request to an Internet resource.
            </summary>
            <param name="asyncResult">The pending request for a response.</param>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.GetResponse">
            <summary>
            Returns a response from an Internet resource.
            </summary>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.SetContentLengthHeader">
            <summary>
            Sets the content length header for the given request message.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.AddHeadersToReset(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Add the list of header names to the list of headers whose values need to be reset after firing sendingrequest event.
            </summary>
            <param name="headerNames">List of header names.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.AddHeadersToReset(System.String[])">
            <summary>
            Adds the given header to the list of header whose values need to be reset after firing sendingrequest event.
            </summary>
            <param name="headerNames">List of header names.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.FireSendingEventHandlers(System.Data.Services.Client.Descriptor)">
            <summary>
            Fires the following events, in order
            1. WritingRequest
            2. SendingRequest2
            </summary>
            <param name="descriptor">Descriptor for which this request is getting generated.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.FireSendingRequest2(System.Data.Services.Client.Descriptor)">
            <summary>
            FireSendingRequest2 event.
            </summary>
            <param name="descriptor">Descriptor for which this request is getting generated.</param>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.Descriptor">
            <summary>
            Descriptor for this request; or null if there isn't one.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.CachedRequestStream">
            <summary>
            Return the stream containing the request payload.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.SendChunked">
            <summary>
            Gets or sets a value that indicates whether to send request data in segments.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.IsBatchPartRequest">
            <summary>
            Returns true if the message is part of the batch request, otherwise return false;
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream">
            <summary>
            This is a just a pass through implementation of IODataRequestMessage.
            In order to keep the sync and non-async code the same, we write all requests into an cached stream and then copy
            it to the underlying network stream in sync or async manner.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.requestMessage">
            <summary>
            IODataRequestMessage implementation that this class wraps.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.cachedRequestStream">
            <summary>
            The cached request stream.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.#ctor(System.Data.Services.Client.DataServiceClientRequestMessage)">
            <summary>
            Creates a new instance of InternalODataRequestMessage.
            </summary>
            <param name="requestMessage">IODataRequestMessage that needs to be wrapped.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.GetHeader(System.String)">
            <summary>
            Returns the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <returns>Returns the value of the header with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.SetHeader(System.String,System.String)">
            <summary>
            Sets the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <param name="headerValue">Value of the header.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.GetStream">
            <summary>
            Gets the stream to be used to write the request payload.
            </summary>
            <returns>Stream to which the request payload needs to be written.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.Headers">
            <summary>
            Returns the collection of request headers.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.Url">
            <summary>
            Gets or Sets the request url.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.Method">
            <summary>
            Gets or Sets the http method for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.RequestMessageWithCachedStream.CachedRequestStream">
            <summary>
            Return the stream containing the request payload.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ODataRequestMessageWrapper.TopLevelRequestMessageWrapper">
            <summary>
            This class wraps the request message for non-batch requests and $batch requests.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataRequestMessageWrapper.TopLevelRequestMessageWrapper.messageWithCachedStream">
            <summary>
            Wrapper for the top-level request messages which caches the request stream as it is written. In order to keep the sync and non-async
            code the same, we write all requests into an cached stream and then copy it to the underlying network stream in sync or async manner.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.TopLevelRequestMessageWrapper.#ctor(System.Data.Services.Client.DataServiceClientRequestMessage,System.Data.Services.Client.RequestInfo,System.Data.Services.Client.Descriptor)">
            <summary>
            Creates a new instance of ODataOuterRequestMessage.
            </summary>
            <param name="requestMessage">DataServiceClientRequestMessage instance.</param>
            <param name="requestInfo">RequestInfo instance.</param>
            <param name="descriptor">Descriptor for this request.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.TopLevelRequestMessageWrapper.CreateWriter(Microsoft.Data.OData.ODataMessageWriterSettings,System.Boolean)">
            <summary>
            Create ODataMessageWriter given the writer settings.
            </summary>
            <param name="writerSettings">Writer settings.</param>
            <param name="isParameterPayload">true if the writer is intended to for a parameter payload, false otherwise.</param>
            <returns>An instance of ODataMessageWriter.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.TopLevelRequestMessageWrapper.IsBatchPartRequest">
            <summary>
            Returns true if the message is part of the batch request, otherwise return false;
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.TopLevelRequestMessageWrapper.CachedRequestStream">
            <summary>
            Return the stream containing the request payload.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ODataRequestMessageWrapper.InnerBatchRequestMessageWrapper">
            <summary>
            This class wraps the request message for inner batch operations.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataRequestMessageWrapper.InnerBatchRequestMessageWrapper.innerBatchRequestMessage">
            <summary>
            Inner batch request that ODataLib creates.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.InnerBatchRequestMessageWrapper.#ctor(System.Data.Services.Client.DataServiceClientRequestMessage,Microsoft.Data.OData.IODataRequestMessage,System.Data.Services.Client.RequestInfo,System.Data.Services.Client.Descriptor)">
            <summary>
            Creates a new instance of InnerBatchRequestMessageWrapper;
            </summary>
            <param name="clientRequestMessage">Instance of DataServiceClientRequestMessage that represents this request.</param>
            <param name="odataRequestMessage">Instance of IODataRequestMessage created by ODataLib.</param>
            <param name="requestInfo">RequestInfo instance.</param>
            <param name="descriptor">Descriptor for this request.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataRequestMessageWrapper.InnerBatchRequestMessageWrapper.CreateWriter(Microsoft.Data.OData.ODataMessageWriterSettings,System.Boolean)">
            <summary>
            Create ODataMessageWriter given the writer settings.
            </summary>
            <param name="writerSettings">Writer settings.</param>
            <param name="isParameterPayload">true if the writer is intended to for a parameter payload, false otherwise.</param>
            <returns>An instance of ODataMessageWriter.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.InnerBatchRequestMessageWrapper.IsBatchPartRequest">
            <summary>
            Returns true if the message is part of the batch request, otherwise return false;
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ODataRequestMessageWrapper.InnerBatchRequestMessageWrapper.CachedRequestStream">
            <summary>
            Return the stream containing the request payload.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionPath">
            <summary>Use this class to represent an annotated list of path segments.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPath.#ctor">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ProjectionPath"/> instance.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPath.#ctor(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ProjectionPath"/> instance.</summary>
            <param name="root">Root parameter for this path.</param>
            <param name="expectedRootType">Expression to get the expected root type in the target tree.</param>
            <param name="rootEntry">Expression for the root entry.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPath.#ctor(System.Linq.Expressions.ParameterExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression})">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ProjectionPath"/> instance.</summary>
            <param name="root">Root parameter for this path.</param>
            <param name="expectedRootType">Expression to get the expected root type in the target tree.</param>
            <param name="rootEntry">Expression for the root entry.</param>
            <param name="members">Member to initialize the path with.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPath.ToString">
            <summary>Provides a string representation of this object.</summary>
            <returns>A string representation of this object, suitable for debugging.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPath.Root">
            <summary>Parameter expression in the source tree.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPath.RootEntry">
            <summary>Expression to get the entry for <see cref="P:System.Data.Services.Client.ProjectionPath.Root"/> in the target tree.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPath.ExpectedRootType">
            <summary>Expression to get the expected root type in the target tree.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionPathBuilder">
            <summary>
            Use this class to help keep track of projection paths built
            while compiling a projection-based materialization plan.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPathBuilder.entityInScope">
            <summary>Stack of whether entities are in scope.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPathBuilder.rewrites">
            <summary>Registers rewrites for member initialization blocks.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPathBuilder.parameterExpressions">
            <summary>Stack of lambda expressions in scope.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPathBuilder.parameterExpressionTypes">
            <summary>
            Stack of expected type expression for <fieldref name="parameterExpressions"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPathBuilder.parameterEntries">
            <summary>Stack of 'entry' parameter expressions.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPathBuilder.parameterProjectionTypes">
            <summary>Stack of projection (target-tree) types for parameters.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.#ctor">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ProjectionPathBuilder"/> instance.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.ToString">
            <summary>Provides a string representation of this object.</summary>
            <returns>String representation of this object.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.EnterLambdaScope(System.Linq.Expressions.LambdaExpression,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <summary>Records that a lambda scope has been entered when visiting a projection.</summary>
            <param name="lambda">Lambda being visited.</param>
            <param name="entry">Expression to the entry parameter from the target tree.</param>
            <param name="expectedType">Expression to the entry-expected-type from the target tree.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.EnterMemberInit(System.Linq.Expressions.MemberInitExpression)">
            <summary>
            Records that a member initialization expression has been entered
            when visting a projection.
            </summary>
            <param name="init">Expression for initialization.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.GetRewrite(System.Linq.Expressions.Expression)">
            <summary>Gets a rewrite for the specified expression; null if none is found.</summary>
            <param name="expression">Expression to match.</param>
            <returns>A rewrite for the expression; possibly null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.LeaveLambdaScope">
            <summary>Records that a lambda scope has been left when visting a projection.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.LeaveMemberInit">
            <summary>
            Records that a member initialization expression has been left when
            visting a projection.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.RegisterRewrite(System.Linq.Expressions.Expression,System.String[],System.Linq.Expressions.Expression)">
            <summary>Registers a member initialization rewrite.</summary>
            <param name="root">Root of member access path, typically a source tree parameter of entity type.</param>
            <param name="names">Sequence of names to match.</param>
            <param name="rewriteExpression">Rewrite expression for names.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathBuilder.RevokeRewrite(System.Linq.Expressions.Expression,System.String[])">
            <summary>Revokes the latest rewrite registered on the specified <paramref name="root"/>.</summary>
            <param name="root">Root of rewrites to revoke.</param>
            <param name="names">Names to revoke.</param>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.CurrentIsEntity">
            <summary>Whether the current scope is acting on an entity.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.ExpectedParamTypeInScope">
            <summary>Expression for the expected type parameter.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.HasRewrites">
            <summary>Whether any rewrites have been registered.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.LambdaParameterInScope">
            <summary>Expression for the entity parameter in the source tree lambda.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.ParameterEntryInScope">
            <summary>Expression for the entry parameter in the target tree.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionPathBuilder.MemberInitRewrite">
            <summary>Use this class to record how rewrites should occur under nested member initializations.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.MemberInitRewrite.MemberNames">
            <summary>Sequence of member names to match.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.MemberInitRewrite.Root">
            <summary>Root of member access path, typically a source tree parameter of entity type.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathBuilder.MemberInitRewrite.RewriteExpression">
            <summary>Rewrite expressions for the last member path.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionPathSegment">
            <summary>
            Use this class to represent a step in a path of segments
            over a parsed tree used during projection-driven materialization.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathSegment.#ctor(System.Data.Services.Client.ProjectionPath,System.String,System.Type)">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ProjectionPathSegment"/> instance.</summary>
            <param name="startPath">Path on which this segment is located.</param>
            <param name="member">Name of member to access when traversing a property; possibly null.</param>
            <param name="projectionType">
            Type that we expect to project out; typically the same as <paramref name="member"/>, but may be adjusted.
            </param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPathSegment.#ctor(System.Data.Services.Client.ProjectionPath,System.Linq.Expressions.MemberExpression)">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ProjectionPathSegment"/> instance.</summary>
            <param name="startPath">Path on which this segment is located.</param>
            <param name="memberExpression">Member expression for the projection path; possibly null.</param>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathSegment.Member">
            <summary>Name of member to access when traversing a property; possibly null.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathSegment.ProjectionType">
            <summary>
            Type that we expect to project out; typically the same as <propertyref name="Member"/>, but may be adjusted.
            </summary>
            <remarks>
            In particular, this type will be adjusted for nested narrowing entity types.
             
            For example:
            from c in ctx.Customers select new NarrowCustomer() {
              ID = c.ID,
              BestFriend = new NarrowCustomer() { ID = c.BestFriend.ID }
            }
             
            In this case, ID will match types on both sides, but BestFriend
            will be of type Customer in the member access of the source tree
            and we want to project out a member-initialized NarrowCustomer
            in the target tree.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathSegment.SourceTypeAs">
            <summary>
            Contains the TypeAs at the source of the member access, null otherwise
            e.g. (p as Employee).Manager
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPathSegment.StartPath">
            <summary>Path on which this segment is located.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionPlan">
            <summary>Use this class to store a materialization plan used with projections.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlan.Run(System.Data.Services.Client.Materialization.ODataEntityMaterializer,Microsoft.Data.OData.ODataEntry,System.Type)">
            <summary>Runs this plan.</summary>
            <param name="materializer">Materializer under which materialization should happen.</param>
            <param name="entry">Root entry to materialize.</param>
            <param name="expectedType">Expected type for the <paramref name="entry"/>.</param>
            <returns>The materialized object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPlan.LastSegmentType">
            <summary>Last segment type for query.</summary>
            <remarks>This typically matches the expected element type at runtime.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPlan.Plan">
            <summary>Provides a method to materialize a payload.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPlan.ProjectedType">
            <summary>Expected type to project.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionPlanCompiler">
            <summary>
            Use this class to create a <see cref="T:System.Data.Services.Client.ProjectionPlan"/> for a given projection lambda.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.dynamicProxyMethodGenerator">
            <summary>Creates dynamic methods that wrap calls to internal methods.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.annotations">
            <summary>Annotations being tracked on this tree.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.materializerExpression">
            <summary>Expression that refers to the materializer.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.normalizerRewrites">
            <summary>Tracks rewrite-to-source rewrites introduced by expression normalizer.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.identifierId">
            <summary>Number to suffix to identifiers to help with debugging.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.pathBuilder">
            <summary>Path builder used to help with tracking state while compiling.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.topLevelProjectionFound">
            <summary>Whether the top level projection has been found.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionPlanCompiler.autoNullPropagation">
            <summary>Auto nulls check in expand paths.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.#ctor(System.Collections.Generic.Dictionary{System.Linq.Expressions.Expression,System.Linq.Expressions.Expression},System.Boolean)">
            <summary>
            Initializes a new <see cref="T:System.Data.Services.Client.ProjectionPlanCompiler"/> instance.
            </summary>
            <param name="normalizerRewrites">Rewrites introduces by normalizer.</param>
            <param name="autoNullPropagation">Auto nulls check in expand paths.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.CompilePlan(System.Linq.Expressions.LambdaExpression,System.Collections.Generic.Dictionary{System.Linq.Expressions.Expression,System.Linq.Expressions.Expression},System.Boolean)">
            <summary>Creates a projection plan from the specified <paramref name="projection"/>.</summary>
            <param name="projection">Projection expression.</param>
            <param name="normalizerRewrites">Tracks rewrite-to-source rewrites introduced by expression normalizer.</param>
            <param name="autoNullPropagation">Auto nulls check in expand paths.</param>
            <returns>A new <see cref="T:System.Data.Services.Client.ProjectionPlan"/> instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitBinary(System.Linq.Expressions.BinaryExpression)">
            <summary>Binary visit method.</summary>
            <param name="b">Binary expression to visit.</param>
            <returns>(Possibly rewritten) binary expression.</returns>
            <remarks>
            This override is introduced because binary expressions are one of
            the scopes at which normalization happens.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitConditional(System.Linq.Expressions.ConditionalExpression)">
            <summary>Visits the specified <paramref name="conditional"/> expression.</summary>
            <param name="conditional">Expression to check.</param>
            <returns>The visited expression.</returns>
            <remarks>
            This override allows us to check for rewrites created by
            ExpressionNormalizer.CreateCompareExpression.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitUnary(System.Linq.Expressions.UnaryExpression)">
            <summary>Unary visit method.</summary>
            <param name="u">Unary expression to visit.</param>
            <returns>(Possibly rewritten) unary expression.</returns>
            <remarks>
            This override is introduced because unary expressions are one of
            the scopes at which normalization happens.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitMemberAccess(System.Linq.Expressions.MemberExpression)">
            <summary>
            MemberExpression visit method
            </summary>
            <param name="m">The MemberExpression expression to visit</param>
            <returns>The visited MemberExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitParameter(System.Linq.Expressions.ParameterExpression)">
            <summary>Parameter visit method.</summary>
            <param name="p">Parameter to visit.</param>
            <returns>Resulting expression.</returns>
            <remarks>
            The parameter may get rewritten as a materializing projection if
            it refers to an entity outside of member binding. In this case,
            it becomes a standalone tracked entity.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitMemberInit(System.Linq.Expressions.MemberInitExpression)">
            <summary>
            MemberInitExpression visit method
            </summary>
            <param name="init">The MemberInitExpression to visit</param>
            <returns>The visited MemberInitExpression</returns>
            <remarks>
            A MemberInitExpression on a knownEntityType implies that we
            want to materialize the thing.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)">
            <summary>Visits a method call expression.</summary>
            <param name="m">Expression to visit.</param>
            <returns>A (possibly rewritten) expression for <paramref name="m"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.Visit(System.Linq.Expressions.Expression)">
            <summary>
            Visit
            </summary>
            <param name="exp">Expression to visit</param>
            <returns>an expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.VisitLambda(System.Linq.Expressions.LambdaExpression)">
            <summary>LambdaExpression visit method.</summary>
            <param name="lambda">The LambdaExpression to visit</param>
            <returns>The visited LambdaExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.CallMaterializer(System.String,System.Linq.Expressions.Expression[])">
            <summary>Generates a call to a static method on AtomMaterializer.</summary>
            <param name="methodName">Name of method to invoke.</param>
            <param name="arguments">Arguments to pass to method.</param>
            <returns>The constructed expression.</returns>
            <remarks>
            There is no support for overload resolution - method names in AtomMaterializer
            must be unique.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.CallMaterializerWithType(System.String,System.Type[],System.Linq.Expressions.Expression[])">
            <summary>Generates a call to a static method on AtomMaterializer.</summary>
            <param name="methodName">Name of method to invoke.</param>
            <param name="typeArguments">Type arguments for method (possibly null).</param>
            <param name="arguments">Arguments to pass to method.</param>
            <returns>The constructed expression.</returns>
            <remarks>
            There is no support for overload resolution - method names in AtomMaterializer
            must be unique.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindConstructor(System.Reflection.ConstructorInfo,System.Linq.Expressions.Expression[])">
            <summary>
            Rebind a call to DataServiceCollection constructor
            </summary>
            <param name="info">the constructor info</param>
            <param name="arguments">arguments to the constructor</param>
            <returns>An expression that calls the DSC constructor</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.CallCheckValueForPathIsNull(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Data.Services.Client.ProjectionPath)">
            <summary>Creates an expression that calls ProjectionCheckValueForPathIsNull.</summary>
            <param name="entry">Expression for root entry for paths.</param>
            <param name="entryType">Expression for expected type for entry.</param>
            <param name="path">Path to check null value for.</param>
            <returns>A new expression with the call instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.CallValueForPath(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Data.Services.Client.ProjectionPath)">
            <summary>Creates an expression that calls ProjectionValueForPath.</summary>
            <param name="entry">Expression for root entry for paths.</param>
            <param name="entryType">Expression for expected type for entry.</param>
            <param name="path">Path to pull value from.</param>
            <returns>A new expression with the call instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.CallValueForPathWithType(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Data.Services.Client.ProjectionPath,System.Type)">
            <summary>Creates an expression that calls ProjectionValueForPath.</summary>
            <param name="entry">Expression for root entry for paths.</param>
            <param name="entryType">Expression for expected type for entry.</param>
            <param name="path">Path to pull value from.</param>
            <param name="type">Path to convert result for.</param>
            <returns>A new expression with the call instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindConditionalNullCheck(System.Linq.Expressions.ConditionalExpression,System.Data.Services.Client.ResourceBinder.PatternRules.MatchNullCheckResult)">
            <summary>
            Rebinds a conditional that performs a null check on an entity.
            </summary>
            <param name="conditional">Conditional expression.</param>
            <param name="nullCheck">Results of null check analysis.</param>
            <returns>The rebound expression.</returns>
            <remarks>
            Do a rewrite to avoid creating a type in the null check:
              a.b == null ? null : [a.b]-based expression
            becomes
              ProjectionIsNull(a.b) ? null : [a.b]-based expression
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindEntityMemberInit(System.Linq.Expressions.MemberInitExpression)">
            <summary>
            Rebinds the specified <paramref name="init"/> expression by gathering
            annotated paths and returning an expression that calls the
            ProjectionGetEntity method.
            </summary>
            <param name="init">Member initialization expression.</param>
            <returns>A new expression suitable for materialization.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.GetDeepestEntry(System.Linq.Expressions.Expression[])">
            <summary>
            Creates an expression that gets the deepest entry that will be found on the
            specified <paramref name="path"/> (for the target tree).
            </summary>
            <param name="path">Path of expressions to walk.</param>
            <returns>An expression that invokes ProjectionGetEntry on the target tree.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.GetExpressionBeforeNormalization(System.Linq.Expressions.Expression)">
            <summary>Gets an expression before its rewrite.</summary>
            <param name="expression">Expression to check.</param>
            <returns>The expression before normalization.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindParameter(System.Linq.Expressions.Expression,System.Data.Services.Client.ProjectionPlanCompiler.ExpressionAnnotation)">
            <summary>Rebinds the specified parameter expression as a path-based access.</summary>
            <param name="expression">Expression to rebind.</param>
            <param name='annotation'>Annotation for the expression to rebind.</param>
            <returns>The rebound expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindMemberAccess(System.Linq.Expressions.MemberExpression,System.Data.Services.Client.ProjectionPlanCompiler.ExpressionAnnotation)">
            <summary>Rebinds the specified member access expression into a path-based value retrieval method call.</summary>
            <param name='m'>Member expression.</param>
            <param name='baseAnnotation'>Annotation for the base portion of the expression.</param>
            <returns>A rebound expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindNewExpressionForDataServiceCollectionOfT(System.Linq.Expressions.NewExpression)">
            <summary>Rewrites NewExpression for DataServiceCollection to a constructor proxy method call.
            The proxy is required for partially trusted appdomains. Paging information is preserved in the materializer.</summary>
            <param name="nex">NewExpression to create a collection</param>
            <returns>The rewritten expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindMethodCallForMemberSelect(System.Linq.Expressions.MethodCallExpression)">
            <summary>Rewrites a call to Select() by adding to the current paths to project out.</summary>
            <param name="call">Call expression.</param>
            <returns>Expression with annotated path to include in member binding.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindMethodCallForMemberToList(System.Linq.Expressions.MethodCallExpression)">
            <summary>Rewrites a call to ToList in the specified method.</summary>
            <param name="call">Call expression.</param>
            <returns>Expression with annotated path to include in member binding.</returns>
            <remarks>
            All that is necessary here is to rewrite the call to Select() and indicate
            that the target type is a given List&lt;T&gt;.
             
            TODO: we're not bubbling this all the way to the GetOrCreateCollection method - does it matter?
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.RebindMethodCallForNewSequence(System.Linq.Expressions.MethodCallExpression)">
            <summary>Rewrites a method call used in a sequence method (possibly over entity types).</summary>
            <param name="call">Call expression.</param>
            <returns>Expression that can be called directly to yield the expected value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionPlanCompiler.TypedEnumerableToList(System.Linq.Expressions.Expression,System.Type)">
            <summary>Returns a method call that returns a list from a typed enumerable.</summary>
            <param name="source">Expression to convert.</param>
            <param name="targetType">Target type to return.</param>
            <returns>The new expression.</returns>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionPlanCompiler.ExpressionAnnotation">
            <summary>Annotates an expression, typically from the target tree.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionPlanCompiler.ExpressionAnnotation.Segment">
            <summary>Segment that marks the path found to an expression.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ReceivingResponseEventArgs">
            <summary>
            <see cref="T:System.EventArgs"/> class for the <see cref="E:System.Data.Services.Client.DataServiceContext.ReceivingResponse"/> event.
            Exposes the ResponseMessage to the user.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ReceivingResponseEventArgs.#ctor(Microsoft.Data.OData.IODataResponseMessage,System.Data.Services.Client.Descriptor)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ReceivingResponseEventArgs"/> class for a
            non-batch or top level $batch response.
            </summary>
            <param name="responseMessage">The response message the client is receiving.</param>
            <param name="descriptor">Descriptor for the request that the client is receiving the response for.</param>
        </member>
        <member name="M:System.Data.Services.Client.ReceivingResponseEventArgs.#ctor(Microsoft.Data.OData.IODataResponseMessage,System.Data.Services.Client.Descriptor,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ReceivingResponseEventArgs"/> class.
            </summary>
            <param name="responseMessage">The response message the client is receiving.</param>
            <param name="descriptor">Descriptor for the request that the client is receiving the response for.</param>
            <param name="isBatchPart">Indicates if this response is to an inner batch query or operation.</param>
        </member>
        <member name="P:System.Data.Services.Client.ReceivingResponseEventArgs.ResponseMessage">
            <summary>
            Gets the response message that the client is receiving.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ReceivingResponseEventArgs.IsBatchPart">
            <summary>
            True if the response is an inner batch operation or query; false otherwise.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ReceivingResponseEventArgs.Descriptor">
            <summary>
            Descriptor for the request that the client is receiving the response for.
            The descriptor may be null for certain types of requests, like most GET requests
            and the top level $batch request.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.HeaderCollection">
            <summary>
            Collection for header name/value pairs which is known to be case insensitive.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.HeaderCollection.headers">
            <summary>
            Case-insensitive dictionary for storing the header name/value pairs.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.#ctor(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
            <summary>
            Initializes a new instance of <see cref="T:System.Data.Services.Client.HeaderCollection"/>.
            </summary>
            <param name="headers">The initial set of headers for the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.#ctor(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>
            Initializes a new instance of <see cref="T:System.Data.Services.Client.HeaderCollection"/>.
            </summary>
            <param name="responseMessage">The response message to pull the headers from.</param>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.#ctor(System.Net.WebHeaderCollection)">
            <summary>
            Initializes a new instance of <see cref="T:System.Data.Services.Client.HeaderCollection"/>.
            </summary>
            <param name="headers">The initial set of headers for the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.#ctor">
            <summary>
            Initializes a new instance of <see cref="T:System.Data.Services.Client.HeaderCollection"/> which is empty.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.SetDefaultHeaders">
            <summary>
            Adds default system headers
            Currently it sets User-Agent header as default system header
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.TryGetHeader(System.String,System.String@)">
            <summary>
            Tries to get the value of the header with the given name, if it is in the collection.
            </summary>
            <param name="headerName">The header name to look for.</param>
            <param name="headerValue">The header value, if it was in the collection.</param>
            <returns>Whether or not the header was in the collection.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.GetHeader(System.String)">
            <summary>
            Gets the value of the header, or null if it is not in the collection.
            </summary>
            <param name="headerName">The header name to look for.</param>
            <returns>The header value or null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.SetHeader(System.String,System.String)">
            <summary>
            Sets a header value. Will remove the header from the underlying dictionary if the new value is null.
            </summary>
            <param name="headerName">The header name to set.</param>
            <param name="headerValue">The new value of the header.</param>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.SetHeaders(System.Collections.Generic.IEnumerable{System.Collections.Generic.KeyValuePair{System.String,System.String}})">
            <summary>
            Sets multiple header values at once.
            </summary>
            <param name="headersToSet">The headers to set.</param>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.AsEnumerable">
            <summary>
            Gets an enumeration of the header values in the collection.
            </summary>
            <returns>An enumeration of the header values in the collection.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.SetRequestVersion(System.Version,System.Version)">
            <summary>
            Sets the request DataServiceVersion and MaxDataServiceVersion.
            </summary>
            <param name="requestVersion">DSV to set the request to.</param>
            <param name="maxProtocolVersion">Max protocol version, which MDSV will essentially be set to.</param>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.SetHeaderIfUnset(System.String,System.String)">
            <summary>
            Sets the header if it was previously unset.
            </summary>
            <param name="headerToSet">The header to set.</param>
            <param name="headerValue">The new header value.</param>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.SetUserAgent">
            <summary>
            Sets UserAgent header
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.Copy">
            <summary>
            Creates a copy of the current header collection which uses a different dictionary to store headers.
            </summary>
            <returns>A copy of the current headers.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HeaderCollection.GetDataServiceVersion">
            <summary>
            Gets the DataServiceVersion as a Version object if it is encoded as a proper version string with an optional Util.VersionSuffix ending.
            </summary>
            <returns>The DataServiceVersion header as a Version object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.HeaderCollection.UnderlyingDictionary">
            <summary>
            Gets the underlying dictionary the headers are stored in. Should only be used when absolutely necessary for maintaining public API.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.HeaderCollection.HeaderNames">
            <summary>
            Gets the names of all the headers in the collection.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.RequestInfo">
            <summary>
            Class which wraps the dataservicecontext and exposes information required for
            generating request to send to the server
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.RequestInfo.typeResolver">
            <summary>The type resolver for the current request.</summary>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.#ctor(System.Data.Services.Client.DataServiceContext,System.Boolean)">
            <summary>
            Creates a new instance of RequestInfo class which is used to build the request to send to the server
            </summary>
            <param name="context">wrapping context instance.</param>
            <param name="isContinuation">Whether this is a continuation request.</param>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.#ctor(System.Data.Services.Client.DataServiceContext)">
            <summary>
            Creates a new instance of RequestInfo class which is used to build the request to send to the server
            </summary>
            <param name="context">wrapping context instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.GetSyncronousResponse(System.Data.Services.Client.ODataRequestMessageWrapper,System.Boolean)">
            <summary>
            This method wraps the HttpWebRequest.GetSyncronousResponse method call. The reasons for doing this are to give us a place
            to invoke internal test hook callbacks that can validate the response headers, and also so that we can do
            debug validation to make sure that the headers have not changed since they were originally configured on the request.
            </summary>
            <param name="request">ODataRequestMessageWrapper instance</param>
            <param name="handleWebException">If set to true, this method will only re-throw the WebException that was caught if
            the response in the exception is null. If set to false, this method will always re-throw in case of a WebException.</param>
            <returns>
            Returns the HttpWebResponse from the wrapped GetSyncronousResponse method.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.EndGetResponse(System.Data.Services.Client.ODataRequestMessageWrapper,System.IAsyncResult)">
            <summary>
            This method wraps the HttpWebRequest.EndGetResponse method call. The reason for doing this is to give us a place
            to invoke internal test hook callbacks that can validate the response headers.
            </summary>
            <param name="request">HttpWebRequest instance</param>
            <param name="asyncResult">Async result obtained from previous call to BeginGetResponse.</param>
            <returns>Returns the HttpWebResponse from the wrapped EndGetResponse method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.GetServerTypeName(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Get the server type name - either from the entity descriptor or using the type resolver.
            </summary>
            <param name="descriptor">The entity descriptor.</param>
            <returns>The server type name for the entity.</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.GetServerTypeName(System.Data.Services.Client.Metadata.ClientTypeAnnotation)">
            <summary>
            Get the server type name - either from the entity descriptor or using the type resolver.
            </summary>
            <param name="clientTypeAnnotation">Client type annotation.</param>
            <returns>The server type name for the entity.</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.InferServerTypeNameFromServerModel(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Infers the server type name for the entity tracked in the given descriptor based on the server model.
            </summary>
            <param name="descriptor">The descriptor containing the entity to get the type name for.</param>
            <returns>The type name or null if it could not be inferred.</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.FireWritingEntityEvent(System.Object,System.Xml.Linq.XElement,System.Uri)">
            <summary>
            Fires the WritingEvent event
            </summary>
            <param name="element">Entity being serialized</param>
            <param name="data">XML data of the ATOM entry</param>
            <param name="baseUri">The xml base of the feed or entry containing the current ATOM entry</param>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.ResolveNameFromType(System.Type)">
            <summary>
            The reverse of ResolveType, use for complex types and LINQ query expression building
            </summary>
            <param name="type">client type</param>
            <returns>type for the server</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.GetDeserializationInfo(System.Nullable{System.Data.Services.Client.MergeOption})">
            <summary>
            Returns the instance of ResponseInfo class, which provides all the information for response handling.
            </summary>
            <param name="mergeOption">merge option to use for handling the response conflicts.
            If this parameter is null the default MergeOption value from the context is used.</param>
            <returns>instance of response info class.</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.GetDeserializationInfoForLoadProperty(System.Nullable{System.Data.Services.Client.MergeOption},System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Returns the instance of LoadPropertyResponseInfo class, which provides information for LoadProperty response handling.
            </summary>
            <param name="mergeOption">Merge option to use for conflict handling.</param>
            <param name="entityDescriptor">Entity whose property is being loaded.</param>
            <param name="property">Property which is being loaded.</param>
            <returns>Instance of the LoadPropertyResponseInfo class.</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.ValidateResponseVersion(System.Version)">
            <summary>
            Validates that the response version can be accepted as a response for this request
            </summary>
            <param name="responseVersion">The version of the response (possibly null if none was specified)</param>
            <returns>Exception if the version can't be accepted, otherwise null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.FireSendingRequest(System.Data.Services.Client.SendingRequestEventArgs)">
            <summary>
            Fires the SendingRequest event.
            </summary>
            <param name="eventArgs">SendingRequestEventArgs instance containing all information about the request.</param>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.FireSendingRequest2(System.Data.Services.Client.SendingRequest2EventArgs)">
            <summary>
            Fires the SendingRequest2 event.
            </summary>
            <param name="eventArgs">SendingRequest2EventArgs instance containing all information about the request.</param>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.CreateRequestMessage(System.Data.Services.Client.BuildingRequestEventArgs)">
            <summary>
            Returns an instance of the IODataRequestMessage
            </summary>
            <param name="requestMessageArgs">Arguments for creating the request message.</param>
            <returns>an instance of the IODataRequestMessage </returns>
        </member>
        <member name="M:System.Data.Services.Client.RequestInfo.CreateRequestArgsAndFireBuildingRequest(System.String,System.Uri,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.HttpStack,System.Data.Services.Client.Descriptor)">
            <summary>
            Asks the context to Fire the BuildingRequest event and get RequestMessageArgs.
            </summary>
            <param name="method">Http method for the request.</param>
            <param name="requestUri">Base Uri for the request.</param>
            <param name="headers">Request headers.</param>
            <param name="httpStack">HttpStack to use.</param>
            <param name="descriptor">Descriptor for the request, if there is one.</param>
            <returns>A new RequestMessageArgs object for building the request message.</returns>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.WriteHelper">
            <summary>The writing helper to use.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.Context">
            <summary>context instance.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.IsContinuation">
            <summary>
            Whether this is a continuation request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.TypeScheme">
            <summary>Gets the URI used to indicate what type scheme is used by the service.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.DataNamespace">
            <summary>Override the namespace used for the data parts of the ATOM entries</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.Configurations">
            <summary> Gets the configurations. </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.EntityTracker">
            <summary>Returns the instance of entity tracker class which tracks all the entities and links for the context.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.HasWritingEventHandlers">
            <summary>Indicates if there are subscribers for the WritingEntity event</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.IgnoreResourceNotFoundException">
            <summary>Whether to ignore extra properties in the response payload.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.HasResolveName">
            <summary>True if the context's ResolveName property has been set, otherwise false.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.IsUserSuppliedResolver">
            <summary>True if the context's ResolveName property can be determined to be a user-supplied value, instead of the one provided by codegen.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.BaseUriResolver">
            <summary>Gets the BaseUriResolver</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.AddAndUpdateResponsePreference">
            <summary>Gets the response preference for Add and Update operations.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.MaxProtocolVersionAsVersion">
            <summary>The maximum protocol version the client should understand.</summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.HasSendingRequestEventHandlers">
            <summary>
            Returns true if there are subscribers to SendingRequest event.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.HasSendingRequest2EventHandlers">
            <summary>
            Returns true if there are subscribers to SendingRequest event.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.UserModifiedRequestInBuildingRequest">
            <summary>
            True if the user could have modified a part of the request. This lets us turn off assertions that normally
            prevent us from making certain mistakes we don't mind the user intentionally ignoring.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.Credentials">
            <summary>
            Gets the authentication information used by each query created using the context object.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.Timeout">
            <summary>
            Get the timeout span in seconds to use for the underlying HTTP request to the data service.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.UsePostTunneling">
            <summary>
            Whether to use post-tunneling for PUT/DELETE.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.Model">
            <summary>
            Gets the client model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.Format">
            <summary>
            Gets the tracker for the user-specified format to use for requests.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.TypeResolver">
            <summary>
            Gets the type resolver.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.UrlConventions">
            <summary>
            Gets the URL conventions the user set on the context.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.HttpStack">
            <summary>
            The HTTP stack to use in Silverlight.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.RequestInfo.UseDefaultCredentials">
            <summary>
            Gets a System.Boolean value that controls whether default credentials are sent with requests.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ResponseInfo">
            <summary>
            Wrappers the context and only exposes information required for
            processing the response from the server
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResponseInfo.requestInfo">
            <summary>The request that led to this response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResponseInfo.mergeOption">
            <summary>MergeOption to use to process the response.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ResponseInfo.#ctor(System.Data.Services.Client.RequestInfo,System.Data.Services.Client.MergeOption)">
            <summary>
            Creates a new instance of the ResponseInfo class which exposes all the information from
            the context required for processing the response from the server.
            </summary>
            <param name="requestInfo">The request info</param>
            <param name="mergeOption">mergeOption</param>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.ReadHelper">
            <summary>The reading helper to use.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.IsContinuation">
            <summary>
            Whether this is a continuation request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.TypeScheme">
            <summary>Override the namespace used for the scheme in the category for ATOM entries.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.DataNamespace">
            <summary>Override the namespace used for the data parts of the ATOM entries</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.MergeOption">
            <summary>MergeOption to use to merge the entities from the response and one present in the client.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.IgnoreMissingProperties">
            <summary>Whether to ignore extra properties in the response payload.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.AutoNullPropagation">
            <summary>
            Auto nulls check in expand paths.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.UndeclaredPropertyBehaviorKinds">
            <summary>Gets the value of UndeclaredPropertyBehaviorKinds.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.EntityTracker">
            <summary>Returns the instance of entity tracker class which tracks all the entities and links for the context.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.ApplyingChanges">
            <summary>A flag indicating if the data service context is applying changes</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.TypeResolver">
            <summary>Gets the type resolver instance.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.BaseUriResolver">
            <summary>Gets the BaseUriResolver</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.MaxProtocolVersion">
            <summary>return the protocol version as specified in the client.</summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.Model">
            <summary>
            Gets the client model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.Context">
            <summary>
            Returns the DataServiceContext
            Should be only used in DataServiceCollection constructor, where
            we need to infer the context from the results.
            </summary>
            <returns>context instance.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ResponseInfo.ResponsePipeline">
            <summary>
            Gets the reading pipeline configuration
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.LoadPropertyResponseInfo">
            <summary>
            Information used for handling response to a LoadProperty request.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.LoadPropertyResponseInfo.#ctor(System.Data.Services.Client.RequestInfo,System.Data.Services.Client.MergeOption,System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Constructs a new instance.
            </summary>
            <param name="requestInfo">Information about the request.</param>
            <param name="mergeOption">Merge option.</param>
            <param name="entityDescriptor">Entity whose property is being loaded.</param>
            <param name="property">Property which is being loaded.</param>
        </member>
        <member name="P:System.Data.Services.Client.LoadPropertyResponseInfo.EntityDescriptor">
            <summary>
            Entity whose property is being loaded.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.LoadPropertyResponseInfo.Property">
            <summary>
            Property being loaded.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.SendingRequest2EventArgs">
            <summary> Event args for the SendingRequest2 event. </summary>
        </member>
        <member name="M:System.Data.Services.Client.SendingRequest2EventArgs.#ctor(Microsoft.Data.OData.IODataRequestMessage,System.Data.Services.Client.Descriptor,System.Boolean)">
            <summary>
            Creates a new instance of SendingRequest2EventsArgs
            </summary>
            <param name="requestMessage">request message.</param>
            <param name="descriptor">Descriptor that represents this change.</param>
            <param name="isBatchPart">True if this args represents a request within a batch, otherwise false.</param>
        </member>
        <member name="P:System.Data.Services.Client.SendingRequest2EventArgs.RequestMessage">
            <summary>The web request reported through this event. The handler may modify or replace it.</summary>
        </member>
        <member name="P:System.Data.Services.Client.SendingRequest2EventArgs.Descriptor">
            <summary>The request header collection.</summary>
        </member>
        <member name="P:System.Data.Services.Client.SendingRequest2EventArgs.IsBatchPart">
            <summary> Returns true if this event is fired for request within a batch, otherwise returns false. </summary>
        </member>
        <member name="T:System.Data.Services.Client.ODataWriterWrapper">
            <summary>
            Forwards calls to an OData Writer
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataWriterWrapper.odataWriter">
            <summary> The odataWriter. </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataWriterWrapper.requestPipeline">
            <summary> The payload writing events. </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.#ctor(Microsoft.Data.OData.ODataWriter,System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration)">
            <summary>
            Prevents a default instance of the <see cref="T:System.Data.Services.Client.ODataWriterWrapper"/> class from being created.
            </summary>
            <param name="odataWriter">The odata writer.</param>
            <param name="requestPipeline">The request pipeline configuration.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.CreateForEntry(Microsoft.Data.OData.ODataMessageWriter,System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration)">
            <summary>
            Creates the odata entry writer.
            </summary>
            <remarks>We never create a feed writer as the client doesn't support deep insert, if we did this would need to change</remarks>
            <param name="messageWriter">The message writer.</param>
            <param name="requestPipeline">The request pipeline configuration.</param>
            <returns>The odata Writer Wrapper</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.CreateForEntryTest(Microsoft.Data.OData.ODataWriter,System.Data.Services.Client.DataServiceClientRequestPipelineConfiguration)">
            <summary>
            Creates the odata entry writer for testing purposes only
            </summary>
            <param name="writer">The odata writer.</param>
            <param name="requestPipeline">The request pipeline configuration.</param>
            <returns>The odata Writer Wrapper</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteStart(Microsoft.Data.OData.ODataEntry,System.Object)">
            <summary>
            Writes the start.
            </summary>
            <param name="entry">The entry.</param>
            <param name="entity">The entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteEnd(Microsoft.Data.OData.ODataEntry,System.Object)">
            <summary>
            Writes the end.
            </summary>
            <param name="entry">The entry.</param>
            <param name="entity">The entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteEnd(Microsoft.Data.OData.ODataNavigationLink,System.Object,System.Object)">
            <summary>
            Writes the end.
            </summary>
            <param name="navlink">The link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteNavigationLinkEnd(Microsoft.Data.OData.ODataNavigationLink,System.Object,System.Object)">
            <summary>
            Writes the end Actions.
            </summary>
            <param name="navlink">The link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteNavigationLinksEnd">
            <summary>
            Writes the navigation link end.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteStart(Microsoft.Data.OData.ODataNavigationLink,System.Object,System.Object)">
            <summary>
            Writes the start.
            </summary>
            <param name="navigationLink">The navigation link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteNavigationLinkStart(Microsoft.Data.OData.ODataNavigationLink,System.Object,System.Object)">
            <summary>
            Writes the start for Navigation link.
            </summary>
            <param name="navigationLink">The navigation link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteNavigationLinksStart(Microsoft.Data.OData.ODataNavigationLink)">
            <summary>
            Writes the start for a collection of navigation links.
            </summary>
            <param name="navigationLink">The navigation link.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataWriterWrapper.WriteEntityReferenceLink(Microsoft.Data.OData.ODataEntityReferenceLink,System.Object,System.Object)">
            <summary>
            Writes the entity reference link.
            </summary>
            <param name="referenceLink">The reference link.</param>
            <param name="source">The source.</param>
            <param name="target">The target.</param>
        </member>
        <member name="T:System.Data.Services.Client.HttpWebRequestMessage">
            <summary> IODataRequestMessage interface implementation. </summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebRequestMessage.requestUrl">
            <summary>Request Url.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebRequestMessage.effectiveHttpMethod">
            <summary> The effective HTTP method. </summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebRequestMessage.requestInfo">
            <summary>RequestInfo instance.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebRequestMessage.httpRequest">
            <summary>HttpWebRequest instance.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebRequestMessage.headersToReset">
            <summary>List of header value to reset after SendingRequest event is fired.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebRequestMessage.fireSendingRequestMethodCalled">
            <summary>True if the FireSendingRequest method is already called, otherwise false.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebRequestMessage.inSendingRequest2Event">
            <summary>True if SendingRequest2Event is currently invoked, otherwise false.</summary>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.#ctor(System.Data.Services.Client.DataServiceClientRequestMessageArgs)">
            <summary>
            Creates a new instance of HttpWebRequestMessage.
            </summary>
            <param name="args">Arguments for creating the request message.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.#ctor(System.Data.Services.Client.DataServiceClientRequestMessageArgs,System.Data.Services.Client.RequestInfo)">
            <summary>
            Creates a new instance of HttpWebRequestMessage.
            </summary>
            <param name="args">Arguments for creating the request message.</param>
            <param name="requestInfo">RequestInfo instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.GetHeader(System.String)">
            <summary>
            Returns the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <returns>Returns the value of the header with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.SetHeader(System.String,System.String)">
            <summary>
            Sets the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <param name="headerValue">Value of the header.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.GetStream">
            <summary>
            Gets the stream to be used to write the request payload.
            </summary>
            <returns>Stream to which the request payload needs to be written.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.Abort">
            <summary>
            Abort the current request.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.BeginGetRequestStream(System.AsyncCallback,System.Object)">
            <summary>
            Begins an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.EndGetRequestStream(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request for a System.IO.Stream object to use to write data.
            </summary>
            <param name="asyncResult">The pending request for a stream.</param>
            <returns>A System.IO.Stream to use to write request data.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.BeginGetResponse(System.AsyncCallback,System.Object)">
            <summary>
             Begins an asynchronous request to an Internet resource.
            </summary>
            <param name="callback">The System.AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An System.IAsyncResult that references the asynchronous request for a response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.EndGetResponse(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request to an Internet resource.
            </summary>
            <param name="asyncResult">The pending request for a response.</param>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.GetResponse">
            <summary>
            Returns a response from an Internet resource.
            </summary>
            <returns>A System.Net.WebResponse that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.SetHttpWebRequestContentLength(System.Net.HttpWebRequest,System.Int64)">
            <summary>
            Sets the Content length of the Http web request
            </summary>
            <param name="httpWebRequest">Http web request to set the content length on</param>
            <param name="contentLength">Length to set</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.SetAcceptCharset(System.Net.HttpWebRequest,System.String)">
            <summary>
            Sets the accept charset.
            </summary>
            <param name="httpWebRequest">The HTTP web request.</param>
            <param name="headerValue">The header value.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.SetUserAgentHeader(System.Net.HttpWebRequest,System.String)">
            <summary>
            Attempts to set the UserAgent property if it exists other wise returns false
            </summary>
            <param name="httpWebRequest">The http web request.</param>
            <param name="headerValue">The value of the user agent.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.AddHeadersToReset(System.Collections.Generic.IEnumerable{System.String})">
            <summary>
            Add the list of header names to the list of headers whose values need to be reset after firing sendingrequest event.
            </summary>
            <param name="headerNames">List of header names.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.BeforeSendingRequest2Event">
            <summary>
            This method is called just before firing SendingRequest2 event.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.AfterSendingRequest2Event">
            <summary>
            This method is called immd. after SendingRequest2 event has been fired.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.SetHeaderValues(System.Data.Services.Client.HttpWebRequestMessage,System.Data.Services.Client.HeaderCollection,System.String)">
            <summary>
            Set the header values on the request.
            </summary>
            <param name="requestMessage">IODataRequestMessage instance containing all the headers.</param>
            <param name="cachedHeaders">Dictionary of cached headers.</param>
            <param name="effectiveHttpMethod">The Effective http method.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.CreateRequest(System.String,System.Uri,System.Data.Services.Client.DataServiceClientRequestMessageArgs)">
            <summary>
            Create an instance of HttpWebRequest from the given IODataRequestMessage instance. This method
            is also responsible for firing SendingRequest event.
            </summary>
            <param name="method">Http Method.</param>
            <param name="requestUrl">Request Url.</param>
            <param name="args">DataServiceClientRequestMessageArgs instance.</param>
            <returns>an instance of HttpWebRequest.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.SetHeaderValue(System.Net.HttpWebRequest,System.String,System.String)">
            <summary>
            Sets the value of the given header in the httpwebrequest instance.
            This has a special case for some of the headers to set the properties on the request instead of using the Headers collection.
            </summary>
            <param name="request">The request to apply the header to.</param>
            <param name="headerName">Name of the header.</param>
            <param name="headerValue">Value of the header.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.GetHeaderValue(System.Net.HttpWebRequest,System.String)">
            <summary>
            Get the value of the given header in the httpwebrequest instance.
            This has a special case for some of the headers to set the properties on the request instead of using the Headers collection.
            </summary>
            <param name="request">The request to get the header value from.</param>
            <param name="headerName">Name of the header.</param>
            <returns>the value of the header with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.ConvertToDataServiceWebException(System.Net.WebException)">
            <summary>
            Convert the WebException into DataServiceWebException.
            </summary>
            <param name="webException">WebException instance.</param>
            <returns>an instance of DataServiceWebException that abstracts the WebException.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebRequestMessage.FireSendingRequest">
            <summary>
            Fire SendingRequest event if its conditions are met.
            If the user has a handler for BuildingRequest, we will throw.
            If the user has no BuildingRequest handlers but does have a SendingRequest2 handler, we silently do not fire this event (this is shipped 5.0 behavior).
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebRequestMessage.Url">
            <summary> Returns the request url. </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebRequestMessage.Method">
            <summary> Returns the method for this request. </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebRequestMessage.Headers">
            <summary> Returns the collection of request headers. </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebRequestMessage.HttpWebRequest">
            <summary> Returns the underlying HttpWebRequest </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebRequestMessage.Credentials">
            <summary>
            Gets or set the credentials for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebRequestMessage.Timeout">
            <summary>
            Gets or sets the timeout (in seconds) for this request.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebRequestMessage.SendChunked">
            <summary>
            Gets or sets a value that indicates whether to send data in segments to the
             Internet resource.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.HttpWebResponseMessage">
            <summary>
            IODataResponseMessage interface implementation
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebResponseMessage.headers">
            <summary>Cached headers.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebResponseMessage.getResponseStream">
            <summary>A func which returns the response stream.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebResponseMessage.statusCode">
            <summary>The response status code.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebResponseMessage.httpWebResponse">
            <summary>HttpWebResponse instance.</summary>
        </member>
        <member name="F:System.Data.Services.Client.HttpWebResponseMessage.underlyingResponseMessage">
            <summary>The IODataResponseMessage to be disposed together with this HttpWebResponseMessage.</summary>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.#ctor(System.Collections.Generic.IDictionary{System.String,System.String},System.Int32,System.Func{System.IO.Stream})">
            <summary>
            Constructor.
            </summary>
            <param name="headers">The headers.</param>
            <param name="statusCode">The status code.</param>
            <param name="getResponseStream">A function returning the response stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.#ctor(System.Net.HttpWebResponse)">
            <summary>
            Constructor.
            </summary>
            <param name="httpResponse">HttpWebResponse instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.#ctor(System.Data.Services.Client.HeaderCollection,System.Int32,System.Func{System.IO.Stream})">
            <summary>
            Constructor.
            </summary>
            <param name="headers">The headers.</param>
            <param name="statusCode">The status code.</param>
            <param name="getResponseStream">A function returning the response stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.#ctor(System.Data.Services.Client.HeaderCollection,System.Int32,System.Func{System.IO.Stream},Microsoft.Data.OData.IODataResponseMessage)">
            <summary>
            Constructor.
            </summary>
            <param name="headers">The headers.</param>
            <param name="statusCode">The status code.</param>
            <param name="getResponseStream">A function returning the response stream.</param>
            <param name="underlyingResponseMessage">The underlying response message that should be disposed together with this instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.GetHeader(System.String)">
            <summary>
            Returns the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <returns>Returns the value of the header with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.SetHeader(System.String,System.String)">
            <summary>
            Sets the value of the header with the given name.
            </summary>
            <param name="headerName">Name of the header.</param>
            <param name="headerValue">Value of the header.</param>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.GetStream">
            <summary>
            Gets the stream to be used to read the response payload.
            </summary>
            <returns>Stream from which the response payload can be read.</returns>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.Dispose">
            <summary>
            Close the underlying HttpWebResponse.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.HttpWebResponseMessage.Dispose(System.Boolean)">
            <summary>
            Perform the actual cleanup work.
            </summary>
            <param name="disposing">If 'true' this method is called from user code; if 'false' it is called by the runtime.</param>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebResponseMessage.Headers">
            <summary>
            Returns the collection of response headers.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebResponseMessage.Response">
            <summary>
            Gets the underlying <see cref="T:System.Net.HttpWebResponse"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.HttpWebResponseMessage.StatusCode">
            <summary>
            The response status code.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ODataPropertyConverter">
            <summary>
            Component for converting properties on client types into instance of <see cref="T:Microsoft.Data.OData.ODataProperty"/> in order to serialize insert/update payloads.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ODataPropertyConverter.requestInfo">
            <summary>
            The request info.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.#ctor(System.Data.Services.Client.RequestInfo)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.ODataPropertyConverter"/> class.
            </summary>
            <param name="requestInfo">The request info.</param>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.PopulateProperties(System.Object,System.String,System.Collections.Generic.IEnumerable{System.Data.Services.Client.Metadata.ClientPropertyAnnotation})">
            <summary>
            Creates a list of ODataProperty instances for the given set of properties.
            </summary>
            <param name="resource">Instance of the resource which is getting serialized.</param>
            <param name="serverTypeName">The server type name of the entity whose properties are being populated.</param>
            <param name="properties">The properties to populate into instance of ODataProperty.</param>
            <returns>Populated ODataProperty instances for the given properties.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.CreateODataComplexValue(System.Type,System.Object,System.String,System.Boolean,System.Collections.Generic.HashSet{System.Object})">
            <summary>
            Creates and returns an ODataComplexValue from the given value.
            </summary>
            <param name="complexType">The value type.</param>
            <param name="value">The complex value.</param>
            <param name="propertyName">If the value is a property, then it represents the name of the property. Can be null, for non-property.</param>
            <param name="isCollectionItem">True, if the value is an item in a collection, false otherwise.</param>
            <param name="visitedComplexTypeObjects">Set of instances of complex types encountered in the hierarchy. Used to detect cycles.</param>
            <returns>An ODataComplexValue representing the given value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.CreateODataCollection(System.Type,System.String,System.Object,System.Collections.Generic.HashSet{System.Object})">
            <summary>
            Creates and returns an ODataCollectionValue from the given value.
            </summary>
            <param name="collectionItemType">The type of the value.</param>
            <param name="propertyName">If the value is a property, then it represents the name of the property. Can be null, for non-property.</param>
            <param name="value">The value.</param>
            <param name="visitedComplexTypeObjects">Set of instances of complex types encountered in the hierarchy. Used to detect cycles.</param>
            <returns>An ODataCollectionValue representing the given value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.ConvertPrimitiveValueToRecognizedODataType(System.Object,System.Type)">
            <summary>
            Returns the primitive property value.
            </summary>
            <param name="propertyValue">Value of the property.</param>
            <param name="propertyType">Type of the property.</param>
            <returns>Returns the value of the primitive property.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.GetCollectionName(System.String)">
            <summary>
            Gets the specified type name as an EDM Collection type, e.g. Collection(Edm.String)
            </summary>
            <param name="itemTypeName">Type name of the items in the collection.</param>
            <returns>Collection type name for the specified item type name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.CreateODataPrimitivePropertyValue(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Object)">
            <summary>
            Creates and returns an <see cref="T:Microsoft.Data.OData.ODataValue"/> for the given primitive value.
            </summary>
            <param name="property">The property being converted.</param>
            <param name="propertyValue">The property value to convert..</param>
            <returns>An ODataValue representing the given value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.PopulateProperties(System.Object,System.Collections.Generic.IEnumerable{System.Data.Services.Client.Metadata.ClientPropertyAnnotation},System.Collections.Generic.HashSet{System.Object})">
            <summary>
            Creates a list of ODataProperty instances for the given set of properties.
            </summary>
            <param name="resource">Instance of the resource which is getting serialized.</param>
            <param name="properties">The properties to populate into instance of ODataProperty.</param>
            <param name="visitedComplexTypeObjects">Set of instances of complex types encountered in the hierarchy. Used to detect cycles.</param>
            <returns>Populated ODataProperty instances for the given properties.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.TryConvertPropertyValue(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Object,System.Collections.Generic.HashSet{System.Object},Microsoft.Data.OData.ODataValue@)">
            <summary>
            Tries to convert the given value into an instance of <see cref="T:Microsoft.Data.OData.ODataValue"/>.
            </summary>
            <param name="property">The property being converted.</param>
            <param name="propertyValue">The property value to convert..</param>
            <param name="visitedComplexTypeObjects">Set of instances of complex types encountered in the hierarchy. Used to detect cycles.</param>
            <param name="odataValue">The odata value if one was created.</param>
            <returns>Whether or not the value was converted.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.CreateODataComplexPropertyValue(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Object,System.Collections.Generic.HashSet{System.Object})">
            <summary>
            Returns the value of the complex property.
            </summary>
            <param name="property">Property which contains name, type, is key (if false and null value, will throw).</param>
            <param name="propertyValue">property value</param>
            <param name="visitedComplexTypeObjects">List of instances of complex types encountered in the hierarchy. Used to detect cycles.</param>
            <returns>An instance of ODataComplexValue containing the value of the properties of the given complex type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.CreateODataCollectionPropertyValue(System.Data.Services.Client.Metadata.ClientPropertyAnnotation,System.Object,System.Collections.Generic.HashSet{System.Object})">
            <summary>
            Returns the value of the collection property.
            </summary>
            <param name="property">Collection property details. Must not be null.</param>
            <param name="propertyValue">Collection instance.</param>
            <param name="visitedComplexTypeObjects">List of instances of complex types encountered in the hierarchy. Used to detect cycles.</param>
            <returns>An instance of ODataCollectionValue representing the value of the property.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ODataPropertyConverter.AddTypeAnnotationNotDeclaredOnServer(System.String,System.Data.Services.Client.Metadata.ClientPropertyAnnotation,Microsoft.Data.OData.ODataValue)">
            <summary>
            Adds a type annotation to the value if it is primitive and not defined on the server.
            </summary>
            <param name="serverTypeName">The server type name of the entity whose properties are being populated.</param>
            <param name="property">The current property.</param>
            <param name="odataValue">The already converted value of the property.</param>
        </member>
        <member name="T:System.Data.Services.Client.PrimitiveTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveTypeConverter.#ctor">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveTypeConverter.TokenizeFromXml(System.Xml.XmlReader)">
            <summary>
            Create a parser token from xml feed
            </summary>
            <param name="reader">The xml reader</param>
            <remarks>The reader is expected to be placed at the beginning of the element, and after this method call, the reader will be placed
            at the EndElement, such that the next Element will be read in the next Read call.</remarks>
            <returns>token</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveTypeConverter.TokenizeFromText(System.String)">
            <summary>
            Create a parser token from text representation ($value end points)
            </summary>
            <param name="text">The text form reprensentation</param>
            <returns>token</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.BooleanTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BooleanTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.BooleanTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.ByteTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ByteTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ByteTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.ByteArrayTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ByteArrayTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ByteArrayTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.BinaryTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BinaryTypeConverter.convertToByteArrayMethodInfo">
            <summary>MethodInfo for the ToArray method on the Binary type.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BinaryTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.BinaryTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="M:System.Data.Services.Client.BinaryTypeConverter.ToArray(System.Object)">
            <summary>
            Converts the System.Data.Linq.Binary to byte[] by calling the ToArray method on the Binary type.
            </summary>
            <param name="instance">Instance of Binary type.</param>
            <returns>Byte[] instance containing the value of the Binary type.</returns>
        </member>
        <member name="P:System.Data.Services.Client.BinaryTypeConverter.BinaryType">
            <summary>
            The delay loaded binary type
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DateTimeTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DateTimeTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.DateTimeTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.DecimalTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DecimalTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.DecimalTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.DoubleTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DoubleTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.DoubleTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.GuidTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.GuidTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.GuidTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.Int16TypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Int16TypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Int16TypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.Int32TypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Int32TypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Int32TypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.Int64TypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Int64TypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Int64TypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.SingleTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.SingleTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.SingleTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.StringTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.StringTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.StringTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.SByteTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.SByteTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.SByteTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.CharTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.CharTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.CharTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.CharArrayTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.CharArrayTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.CharArrayTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.ClrTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ClrTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClrTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.UriTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UriTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.XDocumentTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.XDocumentTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.XDocumentTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.XElementTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.XElementTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.XElementTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.DateTimeOffsetTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DateTimeOffsetTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.DateTimeOffsetTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.TimeSpanTypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.TimeSpanTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.TimeSpanTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.UInt16TypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UInt16TypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.UInt16TypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.UInt32TypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UInt32TypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.UInt32TypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.UInt64TypeConverter">
            <summary>
            Convert between primitive types to string and xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UInt64TypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.UInt64TypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.GeographyTypeConverter">
            <summary>
            Convert between an instance of geography and its Xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.GeographyTypeConverter.TokenizeFromXml(System.Xml.XmlReader)">
            <summary>
            Create an instance of primitive type from the xml reader
            </summary>
            <param name="reader">The xml reader</param>
            <remarks>The reader is expected to be placed at the beginning of the element, and after this method call, the reader will be placed
            at the EndElement, such that the next Element will be read in the next Read call.</remarks>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="T:System.Data.Services.Client.GeometryTypeConverter">
            <summary>
            Convert between an instance of geometry and its Xml representation
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.GeometryTypeConverter.TokenizeFromXml(System.Xml.XmlReader)">
            <summary>
            Create an instance of primitive type from the xml reader
            </summary>
            <param name="reader">The xml reader</param>
            <remarks>The reader is expected to be placed at the beginning of the element, and after this method call, the reader will be placed
            at the EndElement, such that the next Element will be read in the next Read call.</remarks>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="T:System.Data.Services.Client.NamedStreamTypeConverter">
            <summary>
            Convert between an instance of DataServiceStreamLink and its xml representation.
            There is never a scenario in client which requires to do this, but since a converter
            is required, adding one which does nothing for namedstream.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.NamedStreamTypeConverter.Parse(System.String)">
            <summary>
            Create an instance of primitive type from a string representation
            </summary>
            <param name="text">The string representation</param>
            <returns>An instance of primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.NamedStreamTypeConverter.ToString(System.Object)">
            <summary>
            Convert an instance of primitive type to string
            </summary>
            <param name="instance">The instance</param>
            <returns>The string representation of the instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.PrimitiveType">
            <summary>
            Represent a Primitive Type on the client
            </summary>
            <remarks>
            1) Performance
            For performance reasons we use several dictionaries here:
            - clrMapping contains well known primitive types. Initialized in the static constructor and never changed
              after initialization. Therefore it is safe to read without locks. Also see comment about Binary type below
            - derivedPrimitiveTypeMapping - a map for custom primitive types derived from well known primitive types -
              especially spatial types. New items may be added at runtime so reads and writes must be locked
            - knownNonPrimitiveTypes - a HashSet of types we have seen and determined they are not primitive. Used
              to shortcircuit logic for finding derived primitive types for types we know are not primitive.
            To get a primitive type one *MUST NOT* clrMapping since clrMapping will not contain custom primitive types
            but call TryGetPrimitiveType method that knows how to handle multiple dictionaries.
            2) System.Data.Linq.Binary
            We want to avoid static dependency on System.Data.Linq.dll. On the other hand System.Data.Linq.Binary is
            a well known primitive type. For performance reasons and to avoid locking the clrMapping is only initialized
            in the static ctor when we don't have System.Data.Linq.Binary type handy. Therefore we use the dummy BinaryTypeSub
            type during initialization. As a result to get a well known primitive type one *MUST NOT* use the clrMapping
            dictionary directly but call TryGetWellKnownPrimitiveType() method which knows how to handle BinaryType.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.PrimitiveType.clrMapping">
            <summary>
            Clr Type - Primitive Type mapping for well known primitive types
            </summary>
            <remarks>
            It is being initialized in the static constructor and must not change
            later. This way we can avoid locking it.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.PrimitiveType.derivedPrimitiveTypeMapping">
            <summary>
            Clr Type - Primitive Type mapping for custom derived primitive type (e.g. spatial types)
            </summary>
            <remarks>
            This dictionary contains type mapping for custom derived primitive types (e.g. spatial) that
            are types discovered at runtime and added as we go. Any access to this dictionary requires locking.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.PrimitiveType.edmMapping">
            <summary>
            Edm Type - Primitive Type mapping
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PrimitiveType.knownNonPrimitiveTypes">
            <summary>
            Cache containing known non-primitive types. Any access to this hashset requires locking.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.#cctor">
            <summary>
            Static Constructor
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.#ctor(System.Type,System.String,Microsoft.Data.Edm.EdmPrimitiveTypeKind,System.Data.Services.Client.PrimitiveTypeConverter,System.Boolean)">
            <summary>
            Constructor
            </summary>
            <param name="clrType">The Clr Type</param>
            <param name="edmTypeName">The Edm Type Name</param>
            <param name="primitiveKind">The Edm Primitive Type Kind</param>
            <param name="typeConverter">A PrimitiveXmlConverter that provides convertion between instances of this type to its Xml representation and back</param>
            <param name="hasReverseMapping">Whether this primitive type can be mapped from the Edm type name</param>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.TryGetPrimitiveType(System.Type,System.Data.Services.Client.PrimitiveType@)">
            <summary>
            Try retrieve a primitive type metadata from a clr type
            </summary>
            <param name="clrType">The Clr Type</param>
            <param name="ptype">The returning primitive type</param>
            <returns>True if the type is found</returns>
            <remarks>
            See remarks for the class.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.TryGetPrimitiveType(System.String,System.Data.Services.Client.PrimitiveType@)">
            <summary>
            Try retrieve a primitive type metadata from a Edm Type Name
            </summary>
            <param name="edmTypeName">Edm Type Name</param>
            <param name="ptype">The returning primitive type</param>
            <returns>True if the type is found</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.IsKnownType(System.Type)">
            <summary>
            Is this a known primitive type (including string,byte[],uri)
            </summary>
            <param name="type">type to analyze</param>
            <returns>true if known primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.IsKnownNullableType(System.Type)">
            <summary>
            Is this a known primitive type or a nullable based on a primitive type (including string,byte[],uri)
            </summary>
            <param name="type">type to analyze, possibly nullable</param>
            <returns>true if known primitive type or a nullable based on a primitive type</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.DeleteKnownType(System.Type,System.String)">
            <summary>
            Delete the type from known type table
            </summary>
            <param name="clrType">The clr type</param>
            <param name="edmTypeName">The edm type name to remove, or null</param>
            <remarks>This is a test clean up hook. MUST NOT BE CALLED FROM PRODUCT CODE.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.RegisterKnownType(System.Type,System.String,Microsoft.Data.Edm.EdmPrimitiveTypeKind,System.Data.Services.Client.PrimitiveTypeConverter,System.Boolean)">
            <summary>
            Register a known type as primitive type
            </summary>
            <param name="clrType">The Clr Type</param>
            <param name="edmTypeName">The Edm Type Name</param>
            <param name="primitiveKind">The Edm Primitive Type Kind</param>
            <param name="converter">The Type Converter</param>
            <param name="twoWay">Whether this mapping should have a reverse mapping from Edm</param>
            <remarks>
            This method is internal only for testing purposes.
            IN PRODUCT MUST BE CALLED ONLY FROM THE STATIC CTOR OF THE PrimitiveType CLASS.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.CreateEdmPrimitiveType">
            <summary>
            Creates a new instance of the corresponding IEdmPrimitiveType
            </summary>
            <returns>Returns a new instance of the corresponding IEdmPrimitiveType</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.InitializeTypes">
            <summary>
            Populate the mapping table
            </summary>
            <remarks>
            MUST NOT BE CALLED FROM PRODUCT CODE OTHER THAN STATIC CTOR OF PrimitiveType class.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.TryGetWellKnownPrimitiveType(System.Type,System.Data.Services.Client.PrimitiveType@)">
            <summary>
            Tries to get a well known PrimitiveType for a clr type. Contains logic to handle Binary type.
            </summary>
            <param name="clrType">The clr type to get well known PrimitiveType for.</param>
            <param name="ptype">PrimitiveType for the <paramref name="clrType"/> if exists. Otherwise null.</param>
            <returns><c>true</c> if a PrimitiveType for the <paramref name="clrType"/> was found. Otherwise <c>false</c>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.IsBinaryType(System.Type)">
            <summary>
            Whether the <paramref name="type"/> is System.Data.Linq.Binary.
            </summary>
            <param name="type">Type to check.</param>
            <returns><c>true</c> if <paramref name="type"/> is System.Data.Linq.Binary. Otherwise <c>false</c>.</returns>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.ClrType">
            <summary>
            The Clr Type
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.EdmTypeName">
            <summary>
            The Edm Type Name
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.TypeConverter">
            <summary>
            A PrimitiveXmlConverter that provides convertion between
            instances of this type to its Xml representation and back
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.HasReverseMapping">
            <summary>
            This type has a reverse edm type mapping
            </summary>
            <remarks>
            Some known primitive types have shared edm type mapping
            Only one of these shared type can contain a reverse mapping
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.PrimitiveKind">
            <summary>
            Gets the types EDM primitive type kind
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.PrimitiveType.BinaryTypeSub">
            <summary>
            There is no static dependency on System.Data.Linq where Binary type lives. We
            will use this type to Substitute for the missing Binary type.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType">
            <summary>
            Represents a definition of an EDM primitive type.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.namespaceName">
            <summary>
            Namespace of the type.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.name">
            <summary>
            Name of the type.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.primitiveKind">
            <summary>
            The kind of primitive.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.#ctor(System.String,System.String,Microsoft.Data.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Creates an instance of the client EDM primitive type.
            </summary>
            <param name="namespaceName">Namespace of the type.</param>
            <param name="name">Name of the type.</param>
            <param name="primitiveKind">Kind fo the primitive type.</param>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.CreateType(Microsoft.Data.Edm.EdmPrimitiveTypeKind)">
            <summary>
            Creates a new instance of the IEdmPrimitiveType
            </summary>
            <param name="primitiveKind">Kind of primitive type.</param>
            <returns>Returns a new instance of the IEdmPrimitiveType</returns>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.Name">
            <summary>
            Name of the type.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.Namespace">
            <summary>
            Namespace of the type.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.PrimitiveKind">
            <summary>
            Kind of the primitive type.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.SchemaElementKind">
            <summary>
            The kind of this schema element.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.PrimitiveType.ClientEdmPrimitiveType.TypeKind">
            <summary>
            Kind of this type.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.PrimitiveParserToken">
            <summary>
            A parser token
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.PrimitiveParserToken.Materialize(System.Type)">
            <summary>
            Materialize this token using a PrimitiveTypeConverter
            </summary>
            <param name="clrType">The primitive type</param>
            <returns>A materialized instance</returns>
        </member>
        <member name="T:System.Data.Services.Client.TextPrimitiveParserToken">
            <summary>
            Textual based parser token
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.TextPrimitiveParserToken.#ctor(System.String)">
            <summary>
            Constructor
            </summary>
            <param name="text">Textual value</param>
        </member>
        <member name="M:System.Data.Services.Client.TextPrimitiveParserToken.Materialize(System.Type)">
            <summary>
            Materialize by calling the Parse method on the converter
            </summary>
            <param name="clrType">clrType</param>
            <returns>A materialized instance</returns>
        </member>
        <member name="P:System.Data.Services.Client.TextPrimitiveParserToken.Text">
            <summary>
            The text property
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.InstancePrimitiveParserToken`1">
            <summary>
            Instance based parser token, where the token is the materialized instance
            </summary>
            <typeparam name="T">The instance type</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.InstancePrimitiveParserToken`1.#ctor(`0)">
            <summary>
            Constructor
            </summary>
            <param name="instance">The instance</param>
        </member>
        <member name="M:System.Data.Services.Client.InstancePrimitiveParserToken`1.Materialize(System.Type)">
            <summary>
            Materialize by returning the instance
            </summary>
            <param name="clrType">A primitive type converter</param>
            <returns>The instance</returns>
        </member>
        <member name="P:System.Data.Services.Client.InstancePrimitiveParserToken`1.Instance">
            <summary>
            The instance
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ReferenceEqualityComparer">
            <summary>Equality comparer implementation that uses reference equality.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ReferenceEqualityComparer.#ctor">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ReferenceEqualityComparer"/> instance.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ReferenceEqualityComparer.System#Collections#IEqualityComparer#Equals(System.Object,System.Object)">
            <summary>Determines whether two objects are the same.</summary>
            <param name="x">First object to compare.</param>
            <param name="y">Second object to compare.</param>
            <returns>true if both are the same; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ReferenceEqualityComparer.System#Collections#IEqualityComparer#GetHashCode(System.Object)">
            <summary>Serves as hashing function for collections.</summary>
            <param name="obj">Object to hash.</param>
            <returns>
            Hash code for the object; shouldn't change through the lifetime
            of <paramref name="obj"/>.
            </returns>
        </member>
        <member name="T:System.Data.Services.Client.ReferenceEqualityComparer`1">
            <summary>
            Use this class to compare objects by reference in collections such as
            dictionary or hashsets.
            </summary>
            <typeparam name="T">Type of objects to compare.</typeparam>
            <remarks>
            Typically accesses statically as eg
            ReferenceEqualityComparer&lt;Expression&gt;.Instance.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.ReferenceEqualityComparer`1.instance">
            <summary>Single instance per 'T' for comparison.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ReferenceEqualityComparer`1.#ctor">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ReferenceEqualityComparer"/> instance.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ReferenceEqualityComparer`1.Equals(`0,`0)">
            <summary>Determines whether two objects are the same.</summary>
            <param name="x">First object to compare.</param>
            <param name="y">Second object to compare.</param>
            <returns>true if both are the same; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ReferenceEqualityComparer`1.GetHashCode(`0)">
            <summary>Serves as hashing function for collections.</summary>
            <param name="obj">Object to hash.</param>
            <returns>
            Hash code for the object; shouldn't change through the lifetime
            of <paramref name="obj"/>.
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.ReferenceEqualityComparer`1.Instance">
            <summary>Returns a singleton instance for this comparer type.</summary>
        </member>
        <member name="T:System.Data.Services.Client.GetReadStreamResult">
            <summary>
            Class which implements the <see cref="T:System.IAsyncResult"/> for the GetReadStream operation.
            Note that this effectively behaves as a simple wrapper around the IAsyncResult returned
            by the underlying HttpWebRequest, although it's implemented fully on our own to get the same
            behavior as other IAsyncResult objects returned by the client library.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.GetReadStreamResult.requestMessage">
            <summary>The web request this class wraps (effectively)</summary>
        </member>
        <member name="F:System.Data.Services.Client.GetReadStreamResult.streamDescriptor">
            <summary>descriptor of the stream which is getting queried.</summary>
        </member>
        <member name="F:System.Data.Services.Client.GetReadStreamResult.requestInfo">
            <summary>RequestInfo for this request.</summary>
        </member>
        <member name="F:System.Data.Services.Client.GetReadStreamResult.responseMessage">
            <summary>IODataResponseMessage containing all the response information.</summary>
        </member>
        <member name="M:System.Data.Services.Client.GetReadStreamResult.#ctor(System.Data.Services.Client.DataServiceContext,System.String,System.Data.Services.Client.ODataRequestMessageWrapper,System.AsyncCallback,System.Object,System.Data.Services.Client.StreamDescriptor)">
            <summary>
            Constructs a new async result object
            </summary>
            <param name="context">The source of the operation.</param>
            <param name="method">Name of the method which is invoked asynchronously.</param>
            <param name="request">The <see cref="T:System.Net.HttpWebRequest"/> object which is wrapped by this async result.</param>
            <param name="callback">User specified callback for the async operation.</param>
            <param name="state">User state for the async callback.</param>
            <param name="streamDescriptor">stream descriptor whose value is getting queried.</param>
        </member>
        <member name="M:System.Data.Services.Client.GetReadStreamResult.Begin">
            <summary>
            Begins the async request
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.GetReadStreamResult.End">
            <summary>
            Ends the request and creates the response object.
            </summary>
            <returns>The response object for this request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.GetReadStreamResult.Execute">
            <summary>
            Executes the request synchronously.
            </summary>
            <returns>
            The response object for this request.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.GetReadStreamResult.CompletedRequest">
            <summary>invoked for derived classes to cleanup before callback is invoked</summary>
        </member>
        <member name="M:System.Data.Services.Client.GetReadStreamResult.HandleCompleted(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>Set the AsyncWait and invoke the user callback.</summary>
            <param name="pereq">the request object</param>
            <remarks>This method is not implemented for this class.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.GetReadStreamResult.AsyncEndGetResponse(System.IAsyncResult)">
            <summary>
            Async callback registered with the underlying HttpWebRequest object.
            </summary>
            <param name="asyncResult">The async result associated with the HttpWebRequest operation.</param>
        </member>
        <member name="T:System.Data.Services.Client.PathBox">
            <summary>
            Holds state (Path, lambda parameter stack, etc) for projection analysis.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PathBox.EntireEntityMarker">
            <summary>This class is used as a marker for an entity projected in its entirety.</summary>
        </member>
        <member name="F:System.Data.Services.Client.PathBox.uriVersion">
            <summary>The request data service version for the projection and expand paths</summary>
        </member>
        <member name="M:System.Data.Services.Client.PathBox.#ctor">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.PathBox"/> instance.</summary>
        </member>
        <member name="M:System.Data.Services.Client.PathBox.StartNewPath">
            <summary>Starts a new path.</summary>
        </member>
        <member name="M:System.Data.Services.Client.PathBox.AppendPropertyToPath(System.Reflection.PropertyInfo,System.Type,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Appends the given property and source TypeAs to the projection and expand paths.
            </summary>
            <param name="pi">Navigation property</param>
            <param name="convertedSourceType">The TypeAs type if the source of the member access expression is a TypeAs operation. Null otherwise.</param>
            <param name="context">Data service context instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.PathBox.AppendToProjectionPath(System.String,System.Boolean)">
            <summary>
            Appends a name of a property/link/type to the current projection path.
            </summary>
            <param name="name">name of the property/link/type which needs to be added to the select path.</param>
            <param name="replaceEntityMarkerIfPresent">if originally present in the path, replace the entity marker after appending the name</param>
            <returns>the string builder containing all the select paths.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PathBox.AppendToExpandPath(System.String)">
            <summary>
            Appends a name of a property/link/type to the current expand path.
            </summary>
            <param name="name">name of the property/link/type which needs to be added to the expand path.</param>
        </member>
        <member name="M:System.Data.Services.Client.PathBox.RemoveEntireEntityMarkerIfPresent(System.Text.StringBuilder)">
            <summary>
            If the path ends with the EntireEntityMarker, remove it from the path.
            </summary>
            <param name="sb">path</param>
            <returns>True if the EntireEntityMarker was found.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PathBox.AddEntireEntityMarker(System.Text.StringBuilder)">
            <summary>
            Adds the EntireEntityMarker to the end of the path
            </summary>
            <param name="sb">path</param>
        </member>
        <member name="P:System.Data.Services.Client.PathBox.UriVersion">
            <summary>The request data service version for the projection and expand paths</summary>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionAnalyzer">
            <summary>
            Analyzes projection expressions to see if supported.
            To be writable, must follow these rules:
            1) Must be known Entity Type
            2) Must be a true narrowing of the source type. Subset of properties + no transformations other then casts.
             
            To be materializable (read-only), must follow these rules
            1) No transient object creation. (Entity and non-Entity types)
            2) No referencing of other DataService queries or contexts.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.Analyze(System.Linq.Expressions.LambdaExpression,System.Data.Services.Client.ResourceExpression,System.Boolean,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Analyzes a lambda expression to check whether it can be satisfied with
            $select and client-side materialization.
            </summary>
            <param name="le">Lambda expression.</param>
            <param name="re">Resource expression in scope.</param>
            <param name="matchMembers">Whether member accesses are matched as top-level projections.</param>
            <param name="context">Context of expression to analyze.</param>
            <returns>true if the lambda is a client-side projection; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.IsMethodCallAllowedEntitySequence(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            Checks whether the specified <see cref="T:System.Linq.Expressions.MethodCallExpression"/> refers
            to a sequence method call allowed on entity types.
            </summary>
            <param name="call">Method call expression to check.</param>
            <returns>true if the method call is allowed; false otherwise.</returns>
            <remarks>The method won't check whether the call is made on actual entity types.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.CheckChainedSequence(System.Linq.Expressions.MethodCallExpression,System.Type)">
            <summary>
            Checks whether the specified <see cref="T:System.Linq.Expressions.MethodCallExpression"/> refers
            to a Select method call that works on the results of another Select call
            </summary>
            <param name="call">Method call expression to check.</param>
            <param name="type">Type of the projection</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.IsCollectionProducingExpression(System.Linq.Expressions.Expression)">
            <summary>
            Checks whether the specified expression creates a collection.
            </summary>
            <param name="e">Expression to check.</param>
            <returns>true if given expression is collection producing.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.IsDisallowedExpressionForMethodCall(System.Linq.Expressions.Expression,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Checks whether the specified expression is allowed in a MethodCall. Expressions that
            produce collections are not allowed. The only exception is when collection property
            belongs to an entity e.g. c.Orders.Select(o => o), where we allow c.Orders.
            </summary>
            <param name="e">Expression to check.</param>
            <param name="model">The client model used.</param>
            <returns>true if expression is disallowed, false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.Analyze(System.Linq.Expressions.MemberInitExpression,System.Data.Services.Client.PathBox,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Analyzes the specified expression with an entity-projection or
            non-entity-projection analyzer.
            </summary>
            <param name="mie">Expression to analyze.</param>
            <param name="pb">Path box where select and expand paths are tracked.</param>
            <param name="context">Context of expression to analyze.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.AnalyzeResourceExpression(System.Linq.Expressions.LambdaExpression,System.Data.Services.Client.ResourceExpression,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Analyzes the specified <paramref name="lambda"/> for selection and updates
            <paramref name="resource"/>.
            </summary>
            <param name="lambda">Lambda expression to analyze.</param>
            <param name="resource">Resource expression to update.</param>
            <param name="context">Context of expression to analyze.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.SkipConverts(System.Linq.Expressions.Expression)">
            <summary>Skips converts and returns the underlying expression.</summary>
            <param name="expression">Expression to dig into.</param>
            <returns>The original expression without converts.</returns>
            <remarks>
            IMPORTANT: This is fine for checks on underlying expressions where we
            want converts to be "mostly" transparent, but using the result in
            place of the given <paramref name="expression"/> loses information.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionAnalyzer.EntityProjectionAnalyzer.box">
            <summary>Path-tracking object.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionAnalyzer.EntityProjectionAnalyzer.type">
            <summary>Type being member-init'ed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionAnalyzer.EntityProjectionAnalyzer.leafExpressionIsMemberAccess">
            <summary>
            This analyzer iterates through the list of member assignments in the MemberInitExpression
            and visits each one. This field tracks if the currently visited member assignment is a
            MemberAccessExpression, used for determining if a TryAs convert should be emitted when visited.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionAnalyzer.EntityProjectionAnalyzer.context">
            <summary>
            The associated DataServiceContext instance. DevNote(shank): this is used for determining
            the fully-qualified name of types when TryAs converts are processed (C# "as", VB "TryCast").
            Ideally the FQN is only required during URI translation, not during analysis. However,
            the current code constructs the $select and $expand parts of the URI during analysis. This
            could be refactored in the future to defer the $select and $expand URI construction until
            the URI translation phase.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.EntityProjectionAnalyzer.#ctor(System.Data.Services.Client.PathBox,System.Type,System.Data.Services.Client.DataServiceContext)">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ProjectionAnalyzer.EntityProjectionAnalyzer"/> instance.</summary>
            <param name="pb">Path-tracking object.</param>
            <param name="type">Type being member-init'ed.</param>
            <param name="context">Context of expression to analyze.</param>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.EntityProjectionAnalyzer.Analyze(System.Linq.Expressions.MemberInitExpression,System.Data.Services.Client.PathBox,System.Data.Services.Client.DataServiceContext)">
            <summary>Analyzes the specified member-init expression.</summary>
            <param name="mie">Expression to analyze.</param>
            <param name="pb">Path-tracking object to store analysis in.</param>
            <param name="context">Context of expression to analyze.</param>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceALinqExpressionVisitor">
            <summary>
            Specific Vistior base class for the DataServiceQueryProvider.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceALinqExpressionVisitor.Visit(System.Linq.Expressions.Expression)">
            <summary>
            Main visit method.
            </summary>
            <param name="exp">Expression to visit</param>
            <returns>Visited expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceALinqExpressionVisitor.VisitResourceSetExpression(System.Data.Services.Client.ResourceSetExpression)">
            <summary>
            ResourceSetExpression visit method.
            </summary>
            <param name="rse">ResourceSetExpression expression to visit</param>
            <returns>Visited ResourceSetExpression expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceALinqExpressionVisitor.VisitNavigationPropertySingletonExpression(System.Data.Services.Client.NavigationPropertySingletonExpression)">
            <summary>
            NavigationPropertySingletonExpressionvisit method.
            </summary>
            <param name="npse">NavigationPropertySingletonExpression expression to visit</param>
            <returns>Visited NavigationPropertySingletonExpression expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceALinqExpressionVisitor.VisitInputReferenceExpression(System.Data.Services.Client.InputReferenceExpression)">
            <summary>
            Visit an <see cref="T:System.Data.Services.Client.InputReferenceExpression"/>, producing a new InputReferenceExpression
            based on the visited form of the <see cref="T:System.Data.Services.Client.ResourceSetExpression"/> that is referenced by
            the InputReferenceExpression argument, <paramref name="ire"/>.
            </summary>
            <param name="ire">InputReferenceExpression expression to visit</param>
            <returns>Visited InputReferenceExpression expression</returns>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionAnalyzer.NonEntityProjectionAnalyzer.leafExpressionIsMemberAccess">
            <summary>See corresponding comment in EntityProjectionAnalyzer</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionAnalyzer.NonEntityProjectionAnalyzer.context">
            <summary>See corresponding comment in EntityProjectionAnalyzer</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.NonEntityProjectionAnalyzer.VisitUnary(System.Linq.Expressions.UnaryExpression)">
            <summary>Visits a unary expression while initializing a non-entity type structure.</summary>
            <param name="u">Expression to visit.</param>
            <returns>The visited expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionAnalyzer.NonEntityProjectionAnalyzer.VisitMemberAccess(System.Linq.Expressions.MemberExpression)">
            <summary>
            Visits a member access expression in non-entity projections, validating that
            it's correct and recording the path visit to include in a projection if necessary.
            </summary>
            <param name="m">Expression to visit.</param>
            <returns>The same expression.</returns>
            <remarks>
            The projection analyzer runs after funcletization, so a member expression
            rather than a constant expression implies that this is correlated to
            a parameter, by dotting through the argument in valid cases, and possibly
            more complex cases in others like new DSC(p.Orders)*.Foo* &lt;- .Foo is invalid.
            </remarks>
        </member>
        <member name="T:System.Data.Services.Client.ProjectionQueryOptionExpression">
            <summary>
            An resource specific expression representing a projection query option.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.QueryOptionExpression">
            <summary>
            An resource specific expression representing a query option.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryOptionExpression.type">
            <summary>The CLR type this node will evaluate into.</summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryOptionExpression.#ctor(System.Type)">
            <summary>
            Creates a QueryOptionExpression expression
            </summary>
            <param name="type">the return type of the expression</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryOptionExpression.ComposeMultipleSpecification(System.Data.Services.Client.QueryOptionExpression)">
            <summary>
            Composes the <paramref name="previous"/> expression with this one when it's specified multiple times.
            </summary>
            <param name="previous"><see cref="T:System.Data.Services.Client.QueryOptionExpression"/> to compose.</param>
            <returns>
            The expression that results from composing the <paramref name="previous"/> expression with this one.
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.QueryOptionExpression.Type">
            <summary>
            The <see cref="P:System.Data.Services.Client.QueryOptionExpression.Type"/> of the value represented by this <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionQueryOptionExpression.lambda">
            <summary>projection expression to evaluate on client on results from server to materialize type</summary>
        </member>
        <member name="F:System.Data.Services.Client.ProjectionQueryOptionExpression.paths">
            <summary>projection paths to send to the server</summary>
        </member>
        <member name="M:System.Data.Services.Client.ProjectionQueryOptionExpression.#ctor(System.Type,System.Linq.Expressions.LambdaExpression,System.Collections.Generic.List{System.String})">
            <summary>
            Creates a ProjectionQueryOption expression
            </summary>
            <param name="type">the return type of the expression</param>
            <param name="lambda">projection expression</param>
            <param name="paths">Projection paths for the query option</param>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionQueryOptionExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionQueryOptionExpression.Selector">
            <summary>
            expression for the projection
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ProjectionQueryOptionExpression.Paths">
            <summary>
            expression for the projection
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.QueryComponents">
            <summary>Represents the components of query.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.SelectQueryOption">
            <summary>Query option used in projection queries.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.SelectQueryOptionWithQuestionMark">
            <summary>Select query option as it appears at the beginning of a query string.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.SelectQueryOptionWithAmpersand">
            <summary>Select query option as it appears in the middle of a query string.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.lastSegmentType">
            <summary> type </summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.normalizerRewrites">
            <summary>Records the generated-to-source rewrites created.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.projection">
            <summary>selector Lambda Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.httpMethod">
            <summary>HttpMethod to use in the query.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.uriOperationParameters">
            <summary>List of parameters for a service operation or a service function.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.bodyOperationParameters">
            <summary>List of parameters for service action.</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.singleResult">
            <summary>
            Optional field; not all codepaths set this. If true, then a single primitive or complex value is expected.
            If false, then a collection of primitives or complex is expected. A null value makes no claim as to what
            the return type should be. It follows that a single entry or a feed would always have this value as null.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryComponents.version">
            <summary> Version for query </summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryComponents.#ctor(System.Uri,System.Version,System.Type,System.Linq.Expressions.LambdaExpression,System.Collections.Generic.Dictionary{System.Linq.Expressions.Expression,System.Linq.Expressions.Expression})">
            <summary>
             Constructs a container for query components with HttpMethod GET.
            </summary>
            <param name="uri">URI for the query</param>
            <param name="version">Version for the query</param>
            <param name="lastSegmentType">Element type for the query</param>
            <param name="projection">selector Lambda Expression</param>
            <param name="normalizerRewrites">Records the generated-to-source rewrites created (possibly null).</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryComponents.#ctor(System.Uri,System.Version,System.Type,System.Linq.Expressions.LambdaExpression,System.Collections.Generic.Dictionary{System.Linq.Expressions.Expression,System.Linq.Expressions.Expression},System.String,System.Nullable{System.Boolean},System.Collections.Generic.List{System.Data.Services.Client.BodyOperationParameter},System.Collections.Generic.List{System.Data.Services.Client.UriOperationParameter})">
            <summary>
             Constructs a container for query components
            </summary>
            <param name="uri">URI for the query</param>
            <param name="version">Version for the query</param>
            <param name="lastSegmentType">Element type for the query</param>
            <param name="projection">selector Lambda Expression</param>
            <param name="normalizerRewrites">Records the generated-to-source rewrites created (possibly null).</param>
            <param name="httpMethod">The HttpMethod to be used in the request.</param>
            <param name="singleResult">If true, then a single primitive or complex value is expected. If false, then a collection of primitives or complex
            is expected. Should be null when expecting a void response, a single entry, or a feed.</param>
            <param name="bodyOperationParameters">The body operation parameters associated with a service action.</param>
            <param name="uriOperationParameters">The uri operation parameters associated with a service function or a service operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryComponents.ContainsSelectQueryOption(System.String)">
            <summary>
            Determines whether or not the specified query string contains the $select query option.
            </summary>
            <param name="queryString">String that may contain $select.</param>
            <returns>True if the specified string contains the $select query option, otherwise false.</returns>
            <remarks>
            This method is specifically looking for patterns that would indicate we really have the specific query option and not something like $selectNew. It also expects that
            any data string being passed to this method has already been escaped, as the things we are looking for specifically contain equals signs that would be escaped if in a data value.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.NormalizerRewrites">
            <summary>Records the generated-to-source rewrites created.</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.Projection">
            <summary>The projection expression for a query</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.LastSegmentType">
            <summary>The last segment type for query</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.Version">
            <summary>The data service version associated with the uri</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.HttpMethod">
            <summary>The HttpMethod to be used in the query.</summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.UriOperationParameters">
            <summary>
            List of operation parameters for service operation or a service function.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.BodyOperationParameters">
            <summary>
            List of operation parameters for a service action.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.SingleResult">
            <summary>
            Optional field; not all codepaths set this. If true, then a single primitive or complex value is expected.
            If false, then a collection of primitives or complex is expected. A null value makes no claim as to what
            the return type should be. It follows that a single entry or a feed would always have this value as null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.HasSelectQueryOption">
            <summary>
            Gets a value indicating whether the URI for this query has the select query option.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.QueryComponents.Uri">
            <summary>Gets or sets the URI for a query, possibly with query options added to the cached URI.</summary>
            <value> URI with additional query options added if required. </value>
        </member>
        <member name="T:System.Data.Services.Client.ReflectionUtil">
            <summary>
            Static utility class for identifying methods in Queryable, Sequence, and IEnumerable
            and
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ReflectionUtil.TryIdentifySequenceMethod(System.Reflection.MethodInfo,System.Data.Services.Client.SequenceMethod@)">
            <summary>
            Identifies methods as instances of known sequence operators.
            </summary>
            <param name="method">Method info to identify</param>
            <param name="sequenceMethod">Identified sequence operator</param>
            <returns><c>true</c> if method is known; <c>false</c> otherwise</returns>
        </member>
        <member name="M:System.Data.Services.Client.ReflectionUtil.IsAnyAllMethod(System.Data.Services.Client.SequenceMethod)">
            <summary>
            Check to see if this is an Any or an All method
            </summary>
            <param name="sequenceMethod">sequence method to check.</param>
            <returns>true if sequence method is Any or All, false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ReflectionUtil.GetCanonicalMethodDescription(System.Reflection.MethodInfo)">
            <remarks>
            Requires:
            - no collisions on type names
            - no output or reference method parameters
            </remarks>
            <summary>
            Produces a string description of a method consisting of the name and all parameters,
            where all generic type parameters have been substituted with number identifiers.
            </summary>
            <param name="method">Method to identify.</param>
            <returns>Canonical description of method (suitable for lookup)</returns>
        </member>
        <member name="M:System.Data.Services.Client.ReflectionUtil.GetAllLinqOperators">
            <summary>
            Returns all static methods in the Queryable and Enumerable classes.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.SequenceMethod">
            <summary>
            Enumeration of known extension methods
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.InputReferenceExpression">
            <summary>
            Represents a reference to a bound resource set in the resource path.
            The type of the input reference is the element type of the set.
            </summary>
            <remarks>
            Because the type of the input reference is the element type of the set,
            it can be used to indicate what a range variable ranges over.
             
            For example, in input.Select(b => b.id), 'input' is an IQueryable of T,
            and 'b' is a parameter of type T. 'b' can be rebound as an input reference
            to 'input' by the InputBinder, which helps in query analysis and
            translation.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.InputReferenceExpression.target">
            <summary>The resource or set referred to by this input reference expression</summary>
        </member>
        <member name="M:System.Data.Services.Client.InputReferenceExpression.#ctor(System.Data.Services.Client.ResourceExpression)">
            <summary>
            Constructs a new input reference expression that refers to the specified resource set
            </summary>
            <param name="target">The target resource set that the new expression will reference</param>
        </member>
        <member name="M:System.Data.Services.Client.InputReferenceExpression.OverrideTarget(System.Data.Services.Client.ResourceSetExpression)">
            <summary>
            Retargets this input reference to point to the resource set specified by <paramref name="newTarget"/>.
            </summary>
            <param name="newTarget">The <see cref="T:System.Data.Services.Client.ResourceSetExpression"/> that this input reference should use as its target</param>
        </member>
        <member name="P:System.Data.Services.Client.InputReferenceExpression.Type">
            <summary>
            The <see cref="P:System.Data.Services.Client.InputReferenceExpression.Type"/> of the value represented by this <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InputReferenceExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.InputReferenceExpression.Target">
            <summary>
            Retrieves the resource set referred to by this input reference expression
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.CountOption">
            <summary>
            The counting option for the resource expression
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.CountOption.None">
            <summary>No counting</summary>
        </member>
        <member name="F:System.Data.Services.Client.CountOption.ValueOnly">
            <summary>Translates to the $count segment.</summary>
        </member>
        <member name="F:System.Data.Services.Client.CountOption.InlineAll">
            <summary>Translates to the $inlinecount=allpages query option</summary>
        </member>
        <member name="T:System.Data.Services.Client.ResourceExpression">
            <summary>
            Abstract base class for expressions that support Query Options
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.source">
            <summary>Source expression.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.inputRef">
            <summary>Singleton InputReferenceExpression that should be used to indicate a reference to this element of the resource path</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.type">
            <summary>The CLR type this node will evaluate into.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.expandPaths">
            <summary>expand paths</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.countOption">
            <summary>The count query option for the resource set</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.customQueryOptions">
            <summary>custom query options</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.projection">
            <summary>projection expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpression.uriVersion">
            <summary>Uri version for the expression and also the expand and projection paths</summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceExpression.#ctor(System.Linq.Expressions.Expression,System.Type,System.Collections.Generic.List{System.String},System.Data.Services.Client.CountOption,System.Collections.Generic.Dictionary{System.Linq.Expressions.ConstantExpression,System.Linq.Expressions.ConstantExpression},System.Data.Services.Client.ProjectionQueryOptionExpression,System.Type,System.Version)">
            <summary>
            Creates a Resource expression
            </summary>
            <param name="source">the source expression</param>
            <param name="type">the return type of the expression</param>
            <param name="expandPaths">the expand paths</param>
            <param name="countOption">the count option</param>
            <param name="customQueryOptions">The custom query options</param>
            <param name="projection">the projection expression</param>
            <param name="resourceTypeAs">TypeAs type</param>
            <param name="uriVersion">version of the Uri from the expand and projection paths</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceExpression.CreateReference">
            <summary>
            Creates an <see cref="T:System.Data.Services.Client.InputReferenceExpression"/> that refers to this component of the resource path.
            The returned expression is guaranteed to be reference-equal (object.ReferenceEquals)
            to any other InputReferenceExpression that also refers to this resource path component.
            </summary>
            <returns>The InputReferenceExpression that refers to this resource path component</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceExpression.RaiseUriVersion(System.Version)">
            <summary>Raise the UriVersion if it is lower than <paramref name="newVersion"/>.</summary>
            <param name="newVersion">Uri version from the expand and projection paths</param>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.Type">
            <summary>
            The <see cref="P:System.Data.Services.Client.ResourceExpression.Type"/> of the value represented by this <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.ResourceType">
            <summary>
            Resource type for this expression (for sets, this is the element type).
            Never null.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.ResourceTypeAs">
            <summary>
            The resource type that this expression is explicitly converted to by a TypeAs
            expression (i.e., "as" operator in C#, "TryCast" in VB). Null if no conversion.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.UriVersion">
            <summary>
            Uri version from the expand and projection paths
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.IsSingleton">
            <summary>
            Does this expression produce at most 1 resource?
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.ExpandPaths">
            <summary>
            Expand query option for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.CountOption">
            <summary>
            Count query option for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.CustomQueryOptions">
            <summary>
            custom query options for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.Projection">
            <summary>Description of the projection on a resource.</summary>
            <remarks>
            This property is set by the ProjectionAnalyzer component (so it
            mutates this instance), or by the ResourceBinder when it clones
            a ResourceExpression.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.ResourceExpression.Source">
            <summary>
            Gets the source expression.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Evaluator">
            <summary>
            performs funcletization on an expression tree
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.PartialEval(System.Linq.Expressions.Expression,System.Func{System.Linq.Expressions.Expression,System.Boolean})">
            <summary>
            Performs evaluation and replacement of independent sub-trees
            </summary>
            <param name="expression">The root of the expression tree.</param>
            <param name="canBeEvaluated">A function that decides whether a given expression node can be part of the local function.</param>
            <returns>A new tree with sub-trees evaluated and replaced.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.PartialEval(System.Linq.Expressions.Expression)">
            <summary>
            Performs evaluation and replacement of independent sub-trees
            </summary>
            <param name="expression">The root of the expression tree.</param>
            <returns>A new tree with sub-trees evaluated and replaced.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.CanBeEvaluatedLocally(System.Linq.Expressions.Expression)">
            <summary>
            Evaluates if an expression can be evaluated locally.
            </summary>
            <param name="expression">the expression.</param>
            <returns>true/ false if can be evaluated locally</returns>
        </member>
        <member name="T:System.Data.Services.Client.Evaluator.SubtreeEvaluator">
            <summary>
            Evaluates and replaces sub-trees when first candidate is reached (top-down)
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Evaluator.SubtreeEvaluator.candidates">
            <summary>list of candidates</summary>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.SubtreeEvaluator.#ctor(System.Collections.Generic.HashSet{System.Linq.Expressions.Expression})">
            <summary>
            constructs an expression evaluator with a list of candidates
            </summary>
            <param name="candidates">List of expressions to evaluate</param>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.SubtreeEvaluator.Eval(System.Linq.Expressions.Expression)">
            <summary>
            Evaluates an expression sub-tree
            </summary>
            <param name="exp">The expression to evaluate.</param>
            <returns>The evaluated expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.SubtreeEvaluator.Visit(System.Linq.Expressions.Expression)">
            <summary>
            Visit method for visitor
            </summary>
            <param name="exp">the expression to visit</param>
            <returns>visited expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.SubtreeEvaluator.Evaluate(System.Linq.Expressions.Expression)">
            <summary>
            Evaluates expression
            </summary>
            <param name="e">the expression to evaluate</param>
            <returns>constant expression with return value of evaluation</returns>
        </member>
        <member name="T:System.Data.Services.Client.Evaluator.Nominator">
            <summary>
            Performs bottom-up analysis to determine which nodes can possibly
            be part of an evaluated sub-tree.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Evaluator.Nominator.functionCanBeEvaluated">
            <summary>func to determine whether expression can be evaluated</summary>
        </member>
        <member name="F:System.Data.Services.Client.Evaluator.Nominator.candidates">
            <summary>candidate expressions for evaluation</summary>
        </member>
        <member name="F:System.Data.Services.Client.Evaluator.Nominator.cannotBeEvaluated">
            <summary>flag for when sub tree cannot be evaluated</summary>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.Nominator.#ctor(System.Func{System.Linq.Expressions.Expression,System.Boolean})">
            <summary>
            Creates the Nominator based on the function passed.
            </summary>
            <param name="functionCanBeEvaluated">
            A Func speficying whether an expression can be evaluated or not.
            </param>
            <returns>visited expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.Nominator.Nominate(System.Linq.Expressions.Expression)">
            <summary>
            Nominates an expression to see if it can be evaluated
            </summary>
            <param name="expression">
            Expression to check
            </param>
            <returns>a list of expression sub trees that can be evaluated</returns>
        </member>
        <member name="M:System.Data.Services.Client.Evaluator.Nominator.Visit(System.Linq.Expressions.Expression)">
            <summary>
            Visit method for walking expression tree bottom up.
            </summary>
            <param name="expression">
            root expression to visit
            </param>
            <returns>visited expression</returns>
        </member>
        <member name="T:System.Data.Services.Client.ExpressionNormalizer">
            <summary>
            Replaces expression patterns produced by the compiler with approximations
            used in query translation. For instance, the following VB code:
             
                x = y
                 
            becomes the expression
             
                Equal(MethodCallExpression(Microsoft.VisualBasic.CompilerServices.Operators.CompareString(x, y, False), 0)
                 
            which is normalized to
             
                Equal(x, y)
                 
            Comment convention:
             
                CODE(Lang): _VB or C# coding pattern being simplified_
                ORIGINAL: _original LINQ expression_
                NORMALIZED: _normalized LINQ expression_
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionNormalizer.LiftToNull">
            <summary>
            If we encounter a MethodCallExpression, we never need to lift to lift to null. This capability
            exists to translate certain patterns in the language. In this case, the user (or compiler)
            has explicitly asked for a method invocation (at which point, lifting can no longer occur).
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionNormalizer._patterns">
            <summary>
            Gets a dictionary mapping from LINQ expressions to matched by those expressions. Used
            to identify composite expression patterns.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionNormalizer.normalizerRewrites">
            <summary>Records the generated-to-source rewrites created.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.#ctor(System.Collections.Generic.Dictionary{System.Linq.Expressions.Expression,System.Linq.Expressions.Expression})">
            <summary>Initializes a new <see cref="T:System.Data.Services.Client.ExpressionNormalizer"/> instance.</summary>
            <param name="normalizerRewrites">Dictionary in which to store rewrites.</param>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.Normalize(System.Linq.Expressions.Expression,System.Collections.Generic.Dictionary{System.Linq.Expressions.Expression,System.Linq.Expressions.Expression})">
            <summary>
            Applies normalization rewrites to the specified
            <paramref name="expression"/>, recording them in the
            <paramref name="rewrites"/> dictionary.
            </summary>
            <param name="expression">Expression to normalize.</param>
            <param name="rewrites">Dictionary in which to record rewrites.</param>
            <returns>The normalized expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.VisitBinary(System.Linq.Expressions.BinaryExpression)">
            <summary>
            Handle binary patterns:
             
            - VB 'Is' operator
            - Compare patterns
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.VisitUnary(System.Linq.Expressions.UnaryExpression)">
            <summary>
            CODE: x
            ORIGINAL: Convert(x, t) where t is assignable from typeof(x)
            ORIGINAL: x as t, where t is assignable from typeof(x)
            ORIGINAL: and typeof(x) or t are not known primitives unless typeof(x) == t
            ORIGINAL: and x is not a collection of entity types
            NORMALIZED: x
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.UnwrapObjectConvert(System.Linq.Expressions.Expression)">
            <summary>
            CODE: x
            ORIGINAL: Convert(x, typeof(object))
            ORIGINAL(Funcletized): Constant(x, typeof(object))
            NORMALIZED: x
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.IsConstantZero(System.Linq.Expressions.Expression)">
            <summary>
            Returns true if the given expression is a constant '0'.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            Handles MethodCall patterns:
             
            - Operator overloads
            - VB operators
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.VisitMethodCallNoRewrite(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            Handles MethodCall patterns (without recording rewrites):
             
            - Operator overloads
            - VB operators
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.NormalizeEnumerableSource(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            Remove extra Converts from the source of Any/All/OfType methods
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.NormalizePredicateArgument(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            Identifies and normalizes any predicate argument in the given call expression. If no changes
            are needed, returns the existing expression. Otherwise, returns a new call expression
            with a normalized predicate argument.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.HasPredicateArgument(System.Linq.Expressions.MethodCallExpression,System.Int32@)">
            <summary>
            Determines whether the given call expression has a 'predicate' argument (e.g. Where(source, predicate))
            and returns the ordinal for the predicate.
            </summary>
            <remarks>
            Obviously this method will need to be replaced if we ever encounter a method with multiple predicates.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.TryMatchCoalescePattern(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression@)">
            <summary>
            Determines whether the given expression of the form Lambda(Coalesce(left, Constant(false)), ...), a pattern
            introduced by the VB compiler for predicate arguments. Returns the 'normalized' version of the expression
            Lambda((bool)left, ...)
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.NormalizeSelectWithTypeCast(System.Linq.Expressions.MethodCallExpression)">
             <summary>
             Identifies and normalizes a Select method call expression of the following form:
                 Select(x => Convert(x))
             If a match is found, it is translated into a Cast() call.
             
             This supports type casting in queries like the following:
                 from DerivedType entity in context.Entities
                 select entity
             Where DerivedType is derived from the type of context.Entities.
             The pattern also applies to SelectMany calls with the same structure as above.
             
             In C#, the type cast above is represented as a Cast call and the ResourceBinder knows how to handle that.
             In VB, the same query is translated into Select(x => Convert(x)) instead of Cast, and the ResourceBinder
             doesn't recognize that pattern. This normalization allows the two queries to be treated the same.
             </summary>
             <param name="callExpression">MethodCallExpression to potentially normalize.</param>
             <returns>
             If the query pattern was found, a Cast call is returned with the same source as the original Select and
             a cast type that is the same as the original Convert expression.
             If no normalization is required, the original MethodCallExpression is returned without changes.
             </returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.TryMatchSelectWithConvert(System.Linq.Expressions.MethodCallExpression,System.Type@)">
            <summary>
            Looks for a method call expression of the form
                Select(entity => Convert(entity, DerivedType))
            If found, returns DerivedType.
            </summary>
            <param name="callExpression">Expression to check for pattern match.</param>
            <param name="convertType">If the match was found, this is the type used in the Convert, otherwise null.</param>
            <returns>True if the expression matches the desired pattern, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.TryMatchConvertSingleArgument(System.Linq.Expressions.Expression,System.Type@)">
            <summary>
            Looks for a lambda expression of the form
                related => Convert(related, DerivedType)
            Returns DerivedType if a match was found.
            </summary>
            <param name="expression">Expression to check for pattern match.</param>
            <param name="convertType">
            If the <paramref name="expression"/> matches the pattern, this is the type of the found Convert call, otherwise null.
            </param>
            <returns>True if the expression matches the desired pattern, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.RelationalOperatorPlaceholder``2(``0,``1)">
            <summary>
            This method exists solely to support creation of valid relational operator LINQ expressions that are not natively supported
            by the CLR (e.g. String > String). This method must not be invoked.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.CreateRelationalOperator(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <summary>
            Create an operator relating 'left' and 'right' given a relational operator.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.TryCreateRelationalOperator(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Linq.Expressions.BinaryExpression@)">
            <summary>
            Try to create an operator relating 'left' and 'right' using the given operator. If the given operator
            does not define a known relation, returns false.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.CreateCompareExpression(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <summary>
            CODE(C#): Class.Compare(left, right)
            ORIGINAL: MethodCallExpression(Compare, left, right)
            NORMALIZED: Condition(Equal(left, right), 0, Condition(left > right, 1, -1))
             
            Why is this an improvement? We know how to evaluate Condition in the store, but we don't
            know how to evaluate MethodCallExpression... Where the CompareTo appears within a larger expression,
            e.g. left.CompareTo(right) > 0, we can further simplify to left > right (we register the "ComparePattern"
            to make this possible).
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionNormalizer.RecordRewrite(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <summary>Records a rewritten expression as necessary.</summary>
            <param name="source">Original source expression.</param>
            <param name="rewritten">Rewritten expression.</param>
            <remarks>
            IMPORTANT: if there are higher-level rewrites such as replacing parameter
            references, the lower-level rewrites will become un-doable in other
            contexts; we will have to change normalization/de-normalization strategy,
            record additional mapping information and/or bubble up the rewrite
            tracking.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.ExpressionNormalizer.NormalizerRewrites">
            <summary>Records the generated-to-source rewrites created.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ExpressionNormalizer.Pattern">
            <summary>
            Encapsulates an expression matching some pattern.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ExpressionNormalizer.Pattern.Kind">
            <summary>
            Gets pattern kind.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ExpressionNormalizer.PatternKind">
            <summary>
            Gets pattern kind.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ExpressionNormalizer.ComparePattern">
            <summary>
            Matches expression of the form x.CompareTo(y) or Class.CompareTo(x, y)
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionNormalizer.ComparePattern.Left">
            <summary>
            Gets left-hand argument to Compare operation.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionNormalizer.ComparePattern.Right">
            <summary>
            Gets right-hand argument to Compare operation.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.FilterQueryOptionExpression">
            <summary>
            An resource specific expression representing a filter query option.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.FilterQueryOptionExpression.individualExpressions">
            <summary>
            The individual expressions that makes the filter predicate
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.FilterQueryOptionExpression.#ctor(System.Type)">
            <summary>
            Creates a FilterQueryOptionExpression expression
            </summary>
            <param name="type">the return type of the expression</param>
        </member>
        <member name="M:System.Data.Services.Client.FilterQueryOptionExpression.AddPredicateConjuncts(System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression})">
            <summary>
            Adds the conjuncts to individualExpressions
            </summary>
            <param name="predicates">The predicates.</param>
        </member>
        <member name="M:System.Data.Services.Client.FilterQueryOptionExpression.GetPredicate">
            <summary>
            Gets the query option value.
            </summary>
            <returns>A predicate with all Conjuncts AND'ed</returns>
        </member>
        <member name="P:System.Data.Services.Client.FilterQueryOptionExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.FilterQueryOptionExpression.PredicateConjuncts">
            <summary>
            Gets the list of individual conjucts which are separated by AND for the predicate
            i.e. if the filter statement is id1=1 and id2="foo" and id3=datetime'31'
            then this list will have 3 entries, id1=1, id2="foo" and id3=datetime'xxxxxxxxx'
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.InputBinder">
            <summary>
            Replaces references to resource sets - represented as either ParameterExpressions or one or more
            MemberExpressions over a ParameterExpression - with an appropriate InputReferenceExpression that
            indicates which resource set is referenced; effective 'binds' the argument expression to the
            resource sets that it references.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.InputBinder.referencedInputs">
            <summary>Tracks which resource sets are referenced by the argument expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.InputBinder.input">
            <summary>Resource from which valid references must start; if no set with a transparent scope is present, only direct references to this resource will be rebound</summary>
        </member>
        <member name="F:System.Data.Services.Client.InputBinder.inputSet">
            <summary>The input resource, as a resource set (may be null if the input is actually a NavigationPropertySingletonExpression)</summary>
        </member>
        <member name="F:System.Data.Services.Client.InputBinder.inputParameter">
            <summary>The ParameterExpression that, if encountered, indicates a reference to the input resource set</summary>
        </member>
        <member name="M:System.Data.Services.Client.InputBinder.#ctor(System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.ParameterExpression)">
            <summary>
            Constructs a new InputBinder based on the specified input resource set, which is represented by the specified ParameterExpression.
            </summary>
            <param name="resource">The current input resource from which valid references must start</param>
            <param name="setReferenceParam">The parameter that must be referenced in order to refer to the specified input resource set</param>
        </member>
        <member name="M:System.Data.Services.Client.InputBinder.Bind(System.Linq.Expressions.Expression,System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.ParameterExpression,System.Collections.Generic.List{System.Data.Services.Client.ResourceExpression})">
            <summary>
            Replaces Lambda parameter references or transparent scope property accesses over those Lambda
            parameter references with <see cref="T:System.Data.Services.Client.InputReferenceExpression"/>s to the appropriate corresponding
            <see cref="T:System.Data.Services.Client.ResourceSetExpression"/>s, based on the 'input' ResourceSetExpression to which the
            Lambda is logically applied and any enclosing transparent scope applied to that input resource set.
            </summary>
            <param name="e">The expression to rebind</param>
            <param name="currentInput">
            The 'current input' resource set - either the root resource set or the
            rightmost set in the navigation chain.</param>
            <param name="inputParameter">The Lambda parameter that represents a reference to the 'input' set</param>
            <param name="referencedInputs">A list that will be populated with the resource sets that were referenced by the rebound expression</param>
            <returns>
            The rebound version of <paramref name="e"/> where MemberExpression/ParameterExpressions that
            represent resource set references have been replaced with appropriate InputReferenceExpressions.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.InputBinder.VisitMemberAccess(System.Linq.Expressions.MemberExpression)">
            <summary>
            Resolves member accesses that represent transparent scope property accesses to the corresponding resource set,
            iff the input resource set is enclosed in a transparent scope and the specified MemberExpression represents
            such a property access.
            </summary>
            <param name="m">MemberExpression expression to visit</param>
            <returns>
            An InputReferenceExpression if the member access represents a transparent scope property
            access that can be resolved to a resource set in the path that produces the input resource set;
            otherwise the same MemberExpression is returned.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.InputBinder.VisitParameter(System.Linq.Expressions.ParameterExpression)">
            <summary>
            Converts a parameter reference to the input resource set into an InputReferenceExpression,
            iff the parameter reference is to the parameter expression that represents the input resource set
            and the input resource set is not enclosed in a transparent scope.
            </summary>
            <param name="p">The parameter reference expression</param>
            <returns>
            An InputReferenceExpression if the parameter reference is to the input parameter;
            otherwise the same parameter reference expression
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.InputBinder.CreateReference(System.Data.Services.Client.ResourceExpression)">
            <summary>
            Returns an <see cref="T:System.Data.Services.Client.InputReferenceExpression"/> that references the specified resource set,
            and also adds the the resource set to the hashset of resource sets that were referenced by the
            expression that is being rebound.
            </summary>
            <param name="resource">The resource(set) for which a reference was found</param>
            <returns>An InputReferenceExpression that represents a reference to the specified resource set</returns>
        </member>
        <member name="T:System.Data.Services.Client.OrderByQueryOptionExpression">
            <summary>
            An resource specific expression representing a OrderBy query option.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.OrderByQueryOptionExpression.selectors">
            <summary> selectors for OrderBy query option</summary>
        </member>
        <member name="M:System.Data.Services.Client.OrderByQueryOptionExpression.#ctor(System.Type,System.Collections.Generic.List{System.Data.Services.Client.OrderByQueryOptionExpression.Selector})">
            <summary>
            Creates a OrderByQueryOptionExpression expression
            </summary>
            <param name="type">the return type of the expression</param>
            <param name="selectors">selectors for orderby expression</param>
        </member>
        <member name="P:System.Data.Services.Client.OrderByQueryOptionExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.OrderByQueryOptionExpression.Selectors">
            <summary>
            Selectors for OrderBy expression
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.OrderByQueryOptionExpression.Selector">
            <summary>
            Structure for selectors. Holds lambda expression + flag indicating desc.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.OrderByQueryOptionExpression.Selector.Expression">
            <summary>
            lambda expression for selector
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.OrderByQueryOptionExpression.Selector.Descending">
            <summary>
            flag indicating if descending
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.OrderByQueryOptionExpression.Selector.#ctor(System.Linq.Expressions.Expression,System.Boolean)">
            <summary>
            Creates a Selector
            </summary>
            <param name="e">lambda expression for selector</param>
            <param name="descending">flag indicating if descending</param>
        </member>
        <member name="T:System.Data.Services.Client.ResourceBinder">
            <summary>
            This class provides a Bind method that analyzes an input <see cref="T:System.Linq.Expressions.Expression"/> and returns a bound tree.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.context">
            <summary>
            The associated DataServiceContext instance. DevNote(shank): this is used for determining
            the fully-qualified name of types when TypeAs converts are processed (C# "as", VB "TryCast").
            Ideally the FQN is only required during URI translation, not during analysis. However,
            the current code constructs the $select and $expand parts of the URI during analysis. This
            could be refactored in the future to defer the $select and $expand URI construction until
            the URI translation phase.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.Bind(System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceContext)">
            <summary>Analyzes and binds the specified expression.</summary>
            <param name="e">Expression to bind.</param>
            <param name="context">The context of the expression used for bind.</param>
            <returns>
            The expression with bound nodes (annotated expressions used by
            the Expression-to-URI translator).
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.IsMissingKeyPredicates(System.Linq.Expressions.Expression)">
            <summary>
            Checks whether the specified <paramref name="expression"/> is
            missing necessary key predicates.
            </summary>
            <param name="expression">Expression to check.</param>
            <returns>
            true if the expression is a navigation expression and doesn't
            have the necessary key predicates on the associated resource
            expression; false otherwise.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.VerifyKeyPredicates(System.Linq.Expressions.Expression)">
            <summary>
            Verifies that all key predicates are assigned to the specified expression.
            </summary>
            <param name="e">Expression to verify.</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.VerifyNotSelectManyProjection(System.Linq.Expressions.Expression)">
            <summary>Verifies that the specified <paramref name="expression"/> is not a projection based on SelectMany.</summary>
            <param name="expression">Expression to check.</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AnalyzePredicate(System.Linq.Expressions.MethodCallExpression,System.Data.Services.Client.ClientEdmModel)">
            <summary>Analyzes a predicate (Where clause).</summary>
            <param name="mce"><see cref="T:System.Linq.Expressions.MethodCallExpression"/> for a Where call.</param>
            <param name="model">The model.</param>
            <returns>
            An equivalent expression to <paramref name="mce"/>, possibly a different one with additional annotations.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ValidateFilter(System.Linq.Expressions.Expression,System.String)">
            <summary>
            Validates neither operands of the binary expression filter ends with TypeAs
            </summary>
            <param name="exp">filter expression</param>
            <param name="method">method name where this filter is passed to</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ExtractKeyPredicate(System.Data.Services.Client.ResourceSetExpression,System.Collections.Generic.List{System.Linq.Expressions.Expression},System.Data.Services.Client.ClientEdmModel,System.Collections.Generic.List{System.Linq.Expressions.Expression}@)">
            <summary>
            Given a list of predicates, extracts key values for the specified <paramref name="target"/>.
            </summary>
            <param name="target">Target set.</param>
            <param name="predicates">Candidate predicates.</param>
            <param name="nonKeyPredicates">Returns list of non-key predicates.</param>
            <returns>List of key predicates if found, otherwise null</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AddConjuncts(System.Linq.Expressions.Expression,System.Collections.Generic.List{System.Linq.Expressions.Expression})">
            <summary>Adds all AND'ed expressions to the specified <paramref name="conjuncts"/> list.</summary>
            <param name="e">Expression to recursively add conjuncts from.</param>
            <param name="conjuncts">Target list of conjucts.</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AnalyzeProjection(System.Linq.Expressions.MethodCallExpression,System.Data.Services.Client.SequenceMethod,System.Linq.Expressions.Expression@)">
            <summary>
            Analyzes the specified call to see whether it is recognized as a
            projection that is satisfied with $select usage.
            </summary>
            <param name="mce">Call expression to analyze.</param>
            <param name="sequenceMethod">Kind of sequence method to analyze.</param>
            <param name="e">Resulting expression.</param>
            <returns>true if <paramref name="mce"/> is a projection that can be satisfied with $select; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AnalyzeNavigation(System.Linq.Expressions.MethodCallExpression,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Analyzes the specified method call as a WCF Data
            Services navigation operation.
            </summary>
            <param name="mce">Expression to analyze.</param>
            <param name="context">Data service context instance</param>
            <returns>An expression that represents the potential navigation.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AnalyzeSelectMany(System.Linq.Expressions.MethodCallExpression,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Analyzes a .Select or .SelectMany method call to determine
            whether it's allowed, to identify transparent identifiers
            in appropriate .SelectMany() cases, returning the method
            call or a resource set expression.
            </summary>
            <param name="mce">Expression to analyze.</param>
            <param name="context">Data service context instance</param>
            <returns>
            <paramref name="mce"/>, or a new resource set expression for
            the target resource in the method call for navigation properties.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.TryAnalyzeSelectManyCollector(System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceContext,System.Data.Services.Client.ResourceSetExpression@)">
            <summary>
            Analyzes the nav prop reference for a SelectMany method call
            building the appropriate ResourceSetExpression if one can be
            created.
            </summary>
            <param name="input">Input resource expression to the collector</param>
            <param name="navPropRef">The navigation property reference to analyze</param>
            <param name="context">Data service context instance</param>
            <param name="result">The resource set expression</param>
            <returns>true if succesful, else false</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AnalyzeSelectManySelector(System.Linq.Expressions.MethodCallExpression,System.Data.Services.Client.ResourceSetExpression,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Analyzes a SelectMany method call that ranges over a resource set and
            returns the same method or the annotated resource set.
            </summary>
            <param name="selectManyCall">SelectMany method to analyze.</param>
            <param name="sourceResourceSet">Source resource set for SelectMany result.</param>
            <param name="context">Context of expression to analyze.</param>
            <returns>The visited expression.</returns>
            <remarks>
            The <paramref name="sourceResourceSet"/> expression represents the
            navigation produced by the collector of the SelectMany() method call.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.LimitCardinality(System.Linq.Expressions.MethodCallExpression,System.Int32)">
            <summary>Ensures that there's a limit on the cardinality of a query.</summary>
            <param name="mce"><see cref="T:System.Linq.Expressions.MethodCallExpression"/> for the method to limit First/Single(OrDefault).</param>
            <param name="maxCardinality">Maximum cardinality to allow.</param>
            <returns>
            An expression that limits <paramref name="mce"/> to no more than <paramref name="maxCardinality"/> elements.
            </returns>
            <remarks>This method is used by .First(OrDefault) and .Single(OrDefault) to limit cardinality.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AnalyzeOfType(System.Linq.Expressions.MethodCallExpression,System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>
            Analyzes the OfType method call
            </summary>
            <param name="mce">The OfType method call expression</param>
            <param name="maxProtocolVersion">The MaxProtocolVersion of the client</param>
            <returns><paramref name="mce"/>, or a resource set expression with ResourceTypeAs set.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.AnalyzeAnyAll(System.Linq.Expressions.MethodCallExpression,System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>
            Analyzes Any and All method calls
            </summary>
            <param name="mce">Any/All method call expression</param>
            <param name="maxProtocolVersion">The MaxProtocolVersion of the client</param>
            <returns><paramref name="mce"/>, resource set or a collection property expression.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.CreateResourceSetExpression(System.Type,System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.Expression,System.Type)">
            <summary>Creates a new resource set as produced by a navigation.</summary>
            <param name="type">
            The type of the expression as it appears in the tree (possibly
            with transparent scopes).
            </param>
            <param name="source">The source of the set.</param>
            <param name="memberExpression">The member access on <paramref name="source"/> that yields the set.</param>
            <param name="resourceType">The resource type on the set.</param>
            <returns>A new <see cref="T:System.Data.Services.Client.ResourceSetExpression"/> instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.CreateNavigationPropertySingletonExpression(System.Type,System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.Expression)">
            <summary>Creates a new resource singleton as produced by a navigation.</summary>
            <param name="type">
            The type of the expression as it appears in the tree (possibly
            with transparent scopes).
            </param>
            <param name="source">The source of the singleton.</param>
            <param name="memberExpression">The member access on <paramref name="source"/> that yields the singleton.</param>
            <returns>A new <see cref="T:System.Data.Services.Client.NavigationPropertySingletonExpression"/> instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.RemoveTransparentScope(System.Type,System.Data.Services.Client.ResourceSetExpression)">
            <summary>
            Produces a new <see cref="T:System.Data.Services.Client.ResourceSetExpression"/> that is a clone of <paramref name="input"/> in all respects,
            other than its result type - which will be <paramref name="expectedResultType"/> - and its transparent scope,
            which will be <c>null</c>. This is a shallow clone operation - sequence query options, key predicate, etc are
            not cloned, but are reassigned to the new instance. The <paramref name="input"/> resource expression should be
            discarded after being used with this method.
            </summary>
            <param name="expectedResultType">The result type - <see cref="P:System.Linq.Expressions.Expression.Type"/> - that the new resource set expression should have.</param>
            <param name="input">The resource set expression from which the transparent scope is being removed</param>
            <returns>A new resource set expression without an enclosing transparent scope and with the specified result type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.StripConvertToAssignable(System.Linq.Expressions.Expression)">
            <summary>Returns the specified expression, stripping redundant converts.</summary>
            <param name="e">Expression to return.</param>
            <returns>e, or the underlying expression for redundant converts.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.StripTo``1(System.Linq.Expressions.Expression)">
            <summary>
            Strips the specifed <paramref name="expression"/> of intermediate
            expression (unnecessary converts and quotes) and returns
            the underlying expression of type T (or null if it's not of that type).
            </summary>
            <typeparam name="T">Type of expression to return.</typeparam>
            <param name="expression">Expression to consider.</param>
            <returns>The underlying expression for <paramref name="expression"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.StripTo``1(System.Linq.Expressions.Expression,System.Type@)">
            <summary>
            Strips the specifed <paramref name="expression"/> of intermediate unnecessary converts
            and quotes, and returns the underlying expression of type T (or null if it's not of that type).
            </summary>
            <typeparam name="T">Type of expression to return.</typeparam>
            <param name="expression">Expression to consider.</param>
            <param name="convertedType">The converted type for typeAs expressions.</param>
            <returns>The underlying expression for <paramref name="expression"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.StripCastMethodCalls(System.Linq.Expressions.Expression)">
            <summary>Strips calls to .Cast() methods, returning the underlying expression.</summary>
            <param name="expression">Expression to strip calls from.</param>
            <returns>The underlying expression.</returns>
            <remarks>
            Note that this method drops information about what the casts were,
            and is only supported for collector selectors in SelectMany() calls,
            to enable scenarios such as from t in ctx.Tables from Customer c in t.Items...
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.ResourceBinder.Model">
            <summary>Convenience property: model.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ResourceBinder.PatternRules">
            <summary>Use this class to perform pattern-matching over expression trees.</summary>
            <remarks>
            Following these guidelines simplifies usage:
             
            - Return true/false for matches, and interesting matched information in out parameters.
             
            - If one of the inputs to be matched undergoes "skipping" for unnecesary converts,
              return the same member as an out parameter. This forces callers to be aware that
              they should use the more precise representation for computation (without having
              to rely on a normalization step).
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchConvertToAssignable(System.Linq.Expressions.UnaryExpression)">
            <summary>
            Checks whether the <paramref name="expression"/> is a convert that
            always succeeds because it converts to the same target type or a
            base type.
            </summary>
            <param name="expression">Expression to match.</param>
            <returns>
            true if <paramref name="expression"/> is a convert to same or base type; false otherwise.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchParameterMemberAccess(System.Linq.Expressions.Expression)">
            <summary>
            Checks whether <paramref name="expression"/> is a lambda of the
            form (p) => p.member[.member]* (possibly quoted).
            </summary>
            <param name="expression">Expression to match.</param>
            <returns>true if the expression is a match; false otherwise.</returns>
            <remarks>
            This method strip .Call methods because it's currently used only
            to supporte .SelectMany() collector selectors. If this method
            is reused for other purposes, this behavior should be made
            conditional or factored out.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchPropertyAccess(System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceContext,System.Linq.Expressions.MemberExpression@,System.Linq.Expressions.Expression@,System.Collections.Generic.List{System.String}@,System.Version@)">
            <summary>
            Checks whether the specified expression is a path of member
            access expressions.
            </summary>
            <param name="e">Expression to match.</param>
            <param name="context">Data service context instance</param>
            <param name="member">Expression equivalent to <paramref name="e"/>, without unnecessary converts.</param>
            <param name="instance">Expression from which the path starts.</param>
            <param name="propertyPath">Path of member names from <paramref name="instance"/>.</param>
            <param name="uriVersion">Uri version.</param>
            <returns>true if there is at least one property in the path; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNonPrivateReadableProperty(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo@,System.Linq.Expressions.Expression@)">
            <summary>
            Checks whether the specified member expression refers to a member
            that is a non-private property (readable and with getter and/or setter).
            </summary>
            <param name="e">Expression to check.</param>
            <param name="propInfo">Non-null property info when result is true.</param>
            <param name="target">The property access target.</param>
            <returns>Whether the member refers to a non-private, readable property.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchKeyProperty(System.Linq.Expressions.Expression,System.Reflection.PropertyInfo@)">
            <summary>
            Checks whether the specified <paramref name="expression"/> is a member access to a key.
            </summary>
            <param name="expression">Expression to check.</param>
            <param name="property">If this is a key access, the property for the key.</param>
            <returns>true if <paramref name="expression"/> is a member access to a key; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchReferenceEquals(System.Linq.Expressions.Expression)">
            <summary>
            Checks whether the specified <paramref name="expression"/> matches
            a call to System.Object.ReferenceEquals.
            </summary>
            <param name="expression">Expression to check.</param>
            <returns>true if the expression matches; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchResource(System.Linq.Expressions.Expression,System.Data.Services.Client.ResourceExpression@)">
            <summary>
            Checks whether the specifed <paramref name="expression"/> refers to a resource.
            </summary>
            <param name="expression">Expression to check.</param>
            <param name="resource">Resource expression if successful.</param>
            <returns>true if the expression is a resource expression; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchDoubleArgumentLambda(System.Linq.Expressions.Expression,System.Linq.Expressions.LambdaExpression@)">
            <summary>
            Checks whether the specified expression is a lambda with a two parameters
            (possibly quoted).
            </summary>
            <param name="expression">Expression to match.</param>
            <param name="lambda">If the expression matches, the lambda with the two parameters.</param>
            <returns>true if the expression is a lambda with two parameters.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchIdentitySelector(System.Linq.Expressions.LambdaExpression)">
            <summary>
            Checks whether the specified <paramref name="lambda"/> is a selector
            of the form (p) =&gt; p.
            </summary>
            <param name="lambda">Expression to check.</param>
            <returns>true if the lambda is an identity selector; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchSingleArgumentLambda(System.Linq.Expressions.Expression,System.Linq.Expressions.LambdaExpression@)">
            <summary>
            Checks whether the specified expression is a lambda with a single parameter
            (possibly quoted).
            </summary>
            <param name="expression">Expression to match.</param>
            <param name="lambda">If the expression matches, the lambda with the single parameter.</param>
            <returns>true if the expression is a lambda with a single argument.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchTransparentIdentitySelector(System.Linq.Expressions.Expression,System.Linq.Expressions.LambdaExpression,System.Data.Services.Client.DataServiceContext)">
            <summary>
            Checked whether the specified <paramref name="selector"/> has the
            form [input's transparent scope].[accessor].
            </summary>
            <param name="input">Input expression (source) for the selector.</param>
            <param name="selector">Selector lambda.</param>
            <param name="context">Data service context</param>
            <returns>true if the selector's body looks like [input's transparent scope].[accesor].</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchTransparentScopeSelector(System.Data.Services.Client.ResourceSetExpression,System.Linq.Expressions.LambdaExpression,System.Data.Services.Client.ResourceSetExpression.TransparentAccessors@)">
            <summary>
            Checks wheter the specified lambda matches a selector that yields
            a transparent identifier.
            </summary>
            <param name="input">
            The input expression for the lambda, used to set up the
            references from the transparent scope if one is produced.
            </param>
            <param name="resultSelector">Lambda expression to match.</param>
            <param name="transparentScope">
            After invocation, information on the accessors if the result
            is true; null otherwise.
            </param>
            <returns>
            true if <paramref name="input"/> is a selector for a transparent
            identifier; false otherwise.
            </returns>
            <remarks>
            Note that C# and VB.NET have different patterns for accumulating
            parameters.
             
            C# uses a two-member anonymous type with "everything so far"
            plus the newly introduced range variable.
             
            VB.NET uses an n-member anonymous type by pulling range variables
            from a previous anonymous type (or the first range variable),
            plus the newly introduced range variable.
             
            For additional background, see:
            Transparent Identifiers - http://blogs.msdn.com/wesdyer/archive/2006/12/22/transparent-identifiers.aspx
            http://msdn.microsoft.com/en-us/library/bb308966.aspx
            In particular:
            - 26.7.1.4 From, let, where, join and orderby clauses
            - 26.7.1.7 Transparent identifiers
             
            <paramref name="input"/> is the expression that represents the
            navigation resulting from the collector selector in the
            SelectMany() call under analysis.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchPropertyProjectionRelatedSet(System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceContext,System.Linq.Expressions.MemberExpression@)">
            <summary>
            Checks whether the specified <paramref name="input"/> is a member access
            that references <paramref name="potentialPropertyRef"/>.
            </summary>
            <param name="input">Expression to check.</param>
            <param name="potentialPropertyRef">InputReferenceExpression to consider as source.</param>
            <param name="context">Data service context instance.</param>
            <param name="setNavigationMember">Navigation member, equivalent to <paramref name="potentialPropertyRef"/> without unnecessary casts.</param>
            <returns>
            true if <paramref name="input"/> is a property collection that originates in
            <paramref name="potentialPropertyRef"/>; false otherwise.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchPropertyProjectionSingleton(System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceContext,System.Linq.Expressions.MemberExpression@)">
            <summary>
            Checks whether the specified <paramref name="input"/> is a member access
            that references <paramref name="potentialPropertyRef"/>.
            </summary>
            <param name="input">Expression to check.</param>
            <param name="potentialPropertyRef">InputReferenceExpression to consider as source.</param>
            <param name="context">Data service context instance</param>
            <param name="propertyMember">Member expression, equivalent to <paramref name="potentialPropertyRef"/> without unnecessary casts.</param>
            <returns>
            true if <paramref name="input"/> is a scalar property or singleton navigation property that originates in
            <paramref name="potentialPropertyRef"/>; false otherwise.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchPropertyProjection(System.Data.Services.Client.ResourceExpression,System.Linq.Expressions.Expression,System.Boolean,System.Data.Services.Client.DataServiceContext,System.Linq.Expressions.MemberExpression@)">
            <summary>
            Checks whether the specified <paramref name="input"/> is a member access with the specified cardinality (per <paramref name="matchSetNavigationProperty"/>)
            that references <paramref name="potentialPropertyRef"/>.
            </summary>
            <param name="input">Expression to check.</param>
            <param name="potentialPropertyRef">InputReferenceExpression to consider as source.</param>
            <param name="matchSetNavigationProperty">
            Whether the match should be for a set of related entities or a singleton property.
            Singleton properties can be scalar types (including collection and other enumerable types like byte[]), complex types, or singleton navigation properties.
            Related set properties are only navigation properties.
            </param>
            <param name="context">Data service context instance.</param>
            <param name="propertyMember">Member expression for accessing the property, equivalent to <paramref name="potentialPropertyRef"/> without unnecessary casts.</param>
            <returns>
            true if <paramref name="input"/> is a property that originates in <paramref name="potentialPropertyRef"/>
            and is the expected cardinality (per <paramref name="matchSetNavigationProperty"/>); false otherwise.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNot(System.Linq.Expressions.Expression)">
            <summary>
            Checks whether <paramref name="expression"/> is a logical negation
            expression.
            </summary>
            <param name="expression">Expression to check.</param>
            <returns>true if expression is a Not expression; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchSetNavigationProperty(System.Linq.Expressions.Expression,System.Data.Services.Client.ClientEdmModel)">
            <summary>Checks whether the type of the specified expression could represent a set of related resources.</summary>
            <param name="e">Expression to check.</param>
            <param name="model">The model that the client uses.</param>
            <returns>true if the type of the expression could represent a set of related resources; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNullCheck(System.Linq.Expressions.Expression,System.Linq.Expressions.ConditionalExpression)">
            <summary>
            Checks whether <paramref name="entityInScope"/> is a conditional expression
            that checks whether a navigation property (reference or collection) is
            null before proceeding.
            </summary>
            <param name="entityInScope">Entity in scope to be checked.</param>
            <param name="conditional">Expression to check.</param>
            <returns>Check results.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNullConstant(System.Linq.Expressions.Expression)">
            <summary>Checks whether the specified <paramref name="expression"/> is a null constant.</summary>
            <param name="expression">Expression to check.</param>
            <returns>true if <paramref name="expression"/> is a constant null value; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNewDataServiceCollectionOfT(System.Linq.Expressions.NewExpression)">
            <summary>
            Checks whether <paramref name="nex"/> is a "new DataServiceCollection of T".
            </summary>
            <param name="nex">The expression to match</param>
            <returns>true if the expression matches the "new DataServiceCollection of T" or false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNewCollectionOfT(System.Linq.Expressions.NewExpression)">
            <summary>
            Checks whether <paramref name="nex"/> is a "new ICollection of T".
            </summary>
            <param name="nex">The expression to match</param>
            <returns></returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchEquality(System.Linq.Expressions.Expression)">
            <summary>
            Checks whether <paramref name="expression"/> is a check for
            equality on two expressions.
            </summary>
            <param name="expression">Expression to match.</param>
            <returns>
            A structure describing whether the expression is a match,
            whether it yields true on equality (ie, '==' as opposed to '!='),
            and the compared expressions.
            </returns>
            <remarks>
            This pattern recognizes the following:
            - Calls to object.ReferenceEquals
            - Equality checks (ExpressionNodeType.Equals and ExpressionNodeType.NotEquals)
            - Negation (ExpressionNodeType.Not)
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.ExpressionIsSimpleAccess(System.Linq.Expressions.Expression,System.Collections.ObjectModel.ReadOnlyCollection{System.Linq.Expressions.ParameterExpression})">
            <summary>
            Checks whether the <paramref name="argument"/> expression is a
            simple access (standalone or member-access'ed) on one of the
            parameter <paramref name="expressions"/>.
            </summary>
            <param name="argument">Argument to match.</param>
            <param name="expressions">Candidate parameters.</param>
            <returns>
            true if the argument is a parmater or a member from a
            parameter; false otherwise.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNaryLambda(System.Linq.Expressions.Expression,System.Int32,System.Linq.Expressions.LambdaExpression@)">
            <summary>
            Checks whether the specified expression is a lambda with a parameterCount parameters
            (possibly quoted).
            </summary>
            <param name="expression">Expression to match.</param>
            <param name="parameterCount">Expected number of parametrs.</param>
            <param name="lambda">If the expression matches, the lambda with the two parameters.</param>
            <returns>true if the expression is a lambda with parameterCount parameters.</returns>
        </member>
        <member name="T:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNullCheckResult">
            <summary>
            Use this class to represent the results of a match on an expression
            that does a null check before accessing a property.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNullCheckResult.AssignExpression">
            <summary>Expression used to assign a value when the reference is not null.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNullCheckResult.Match">
            <summary>Whether the expression analyzed matches a null check pattern.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PatternRules.MatchNullCheckResult.TestToNullExpression">
            <summary>Expression being checked againt null.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ResourceBinder.PatternRules.MatchEqualityCheckResult">
            <summary>
            Use this class to represent the results of a match on an expression
            that checks for equality .
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PatternRules.MatchEqualityCheckResult.EqualityYieldsTrue">
            <summary>Whether a positive equality yields 'true' (ie, is this '==' as opposed to '!=').</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PatternRules.MatchEqualityCheckResult.Match">
            <summary>Whether the expression analyzed matches an equality check pattern.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PatternRules.MatchEqualityCheckResult.TestLeft">
            <summary>The left-hand side of the check.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PatternRules.MatchEqualityCheckResult.TestRight">
            <summary>The right-hand side of the check.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ValidationRules.ThrowNotSupportedExceptionForTheFormatOption">
            <summary>
            Throws the NotSupportedException for the $format query option.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ValidationRules.CheckPredicate(System.Linq.Expressions.Expression,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Detect and disallow member access for certain known types, in 'where' requests.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ValidationRules.CheckOrderBy(System.Linq.Expressions.Expression,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Detect and disallow member access for certain known types, in 'orderby' requests.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ValidationRules.DisallowMemberAccessInNavigation(System.Linq.Expressions.Expression,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Used to identify and block navigation to members of collection property in select statement.
            e.g. from c in ctx.Customers select c.CollectionProperty.member
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ValidationRules.DisallowExpressionEndWithTypeAs(System.Linq.Expressions.Expression,System.String)">
            <summary>
            We do not support type identifier at the end of a path.
            For example, these would throw:
            select p as Employee
            select p.BestFriend as Employee
            Expand(p => p.BestFriend as Employee)
            </summary>
            <param name="exp">expression passed to validate</param>
            <param name="method">The context of where <paramref name="exp"/> is applied</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ValidationRules.ValidateExpandPath(System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceContext,System.String@,System.Version@)">
            <summary>
            Checks whether the specified <paramref name="input"/> is a valid expand path.
            </summary>
            <param name="input">The lambda expression for the expand path</param>
            <param name="context">Data service context instance.</param>
            <param name="expandPath">Expand path</param>
            <param name="uriVersion">Uri version</param>
        </member>
        <member name="T:System.Data.Services.Client.ResourceBinder.ValidationRules.WhereAndOrderByChecker">
            <summary>
            Detect and disallow member access for certain known types, in 'where' and 'orderby' requests.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ResourceBinder.PropertyInfoEqualityComparer">
            <summary>
            Equality and comparison implementation for PropertyInfo.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PropertyInfoEqualityComparer.#ctor">
            <summary>
            private constructor for the singleton pattern
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.PropertyInfoEqualityComparer.Instance">
            <summary>
            Static property which returns the single instance of the EqualityComparer
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PropertyInfoEqualityComparer.Equals(System.Reflection.PropertyInfo,System.Reflection.PropertyInfo)">
            <summary>
            Checks whether the given property info's refers to the same property or not.
            </summary>
            <param name="left">first property info</param>
            <param name="right">second property info</param>
            <returns>true if they refer to the same property, otherwise returns false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.PropertyInfoEqualityComparer.GetHashCode(System.Reflection.PropertyInfo)">
            <summary>
            Computes the hashcode for the given property info
            </summary>
            <param name="obj">property info whose hash code needs to be computed.</param>
            <returns>the hashcode for the given property info.</returns>
        </member>
        <member name="T:System.Data.Services.Client.ResourceBinder.ExpressionPresenceVisitor">
            <summary>
            Use this visitor to detect whether an Expression is found in an
            Expression tree.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.ExpressionPresenceVisitor.target">
            <summary>Target expression being sought.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceBinder.ExpressionPresenceVisitor.found">
            <summary>Whether the target has been found.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ExpressionPresenceVisitor.#ctor(System.Linq.Expressions.Expression)">
            <summary>
            Initializes a new <see cref="T:System.Data.Services.Client.ResourceBinder.ExpressionPresenceVisitor"/> that
            searches for the given <paramref name="target"/>.
            </summary>
            <param name="target">Target expression to look for.</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ExpressionPresenceVisitor.IsExpressionPresent(System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <summary>
            Checks whether the specified <paramref name="target"/> can
            be found in the given <paramref name="tree"/>.
            </summary>
            <param name="target">Expression sought.</param>
            <param name="tree">Expression tree to look into.</param>
            <returns>true if target is found at least once; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ResourceBinder.ExpressionPresenceVisitor.Visit(System.Linq.Expressions.Expression)">
            <summary>Visits the specified expression.</summary>
            <param name="exp">Expression to visit.</param>
            <returns>The visited expression (<paramref name="exp"/>).</returns>
        </member>
        <member name="T:System.Data.Services.Client.ResourceExpressionType">
            <summary>Enum for resource expression types</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.RootResourceSet">
            <summary>ResourceSet Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.ResourceNavigationProperty">
            <summary>Resource Navigation Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.ResourceNavigationPropertySingleton">
            <summary>Resource Navigation Expression to Singleton</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.TakeQueryOption">
            <summary>Take Query Option Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.SkipQueryOption">
            <summary>Skip Query Option Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.OrderByQueryOption">
            <summary>OrderBy Query Option Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.FilterQueryOption">
            <summary>Filter Query Option Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.InputReference">
            <summary>Reference to a bound component of the resource set path</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.ProjectionQueryOption">
            <summary>Projection Query Option Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceExpressionType.ExpandQueryOption">
            <summary>Expand Query Option Expression</summary>
        </member>
        <member name="T:System.Data.Services.Client.NavigationPropertySingletonExpression">
            <summary>Expression for a navigation property into a single entity (eg: Customer.BestFriend).</summary>
        </member>
        <member name="F:System.Data.Services.Client.NavigationPropertySingletonExpression.memberExpression">
            <summary>property member name</summary>
        </member>
        <member name="F:System.Data.Services.Client.NavigationPropertySingletonExpression.resourceType">
            <summary> resource type</summary>
        </member>
        <member name="M:System.Data.Services.Client.NavigationPropertySingletonExpression.#ctor(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type,System.Collections.Generic.List{System.String},System.Data.Services.Client.CountOption,System.Collections.Generic.Dictionary{System.Linq.Expressions.ConstantExpression,System.Linq.Expressions.ConstantExpression},System.Data.Services.Client.ProjectionQueryOptionExpression,System.Type,System.Version)">
            <summary>
            Creates a NavigationPropertySingletonExpression expression
            </summary>
            <param name="type">the return type of the expression</param>
            <param name="source">the source expression</param>
            <param name="memberExpression">property member name</param>
            <param name="resourceType">resource type for expression</param>
            <param name="expandPaths">expand paths for resource set</param>
            <param name="countOption">count option for the resource set</param>
            <param name="customQueryOptions">custom query options for resourcse set</param>
            <param name="projection">projection expression</param>
            <param name="resourceTypeAs">target expression type for a TypeAs conversion</param>
            <param name="uriVersion">version of the Uri from the expand and projection paths</param>
        </member>
        <member name="M:System.Data.Services.Client.NavigationPropertySingletonExpression.CreateCloneWithNewType(System.Type)">
            <summary>
            Cast changes the type of the ResourceExpression
            </summary>
            <param name="type">new type</param>
            <returns>new NavigationPropertySingletonExpression</returns>
        </member>
        <member name="P:System.Data.Services.Client.NavigationPropertySingletonExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.NavigationPropertySingletonExpression.MemberExpression">
            <summary>
            Gets the member expression.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.NavigationPropertySingletonExpression.ResourceType">
            <summary>
            The resource type of the singe instance produced by this singleton navigation.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.NavigationPropertySingletonExpression.IsSingleton">
            <summary>
            Singleton navigation properties always produce at most 1 result
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.NavigationPropertySingletonExpression.HasQueryOptions">
            <summary>
            Does Singleton navigation have query options.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.ResourceSetExpression">
            <summary>ResourceSet Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.resourceType">
            <summary>
            The (static) type of the resources in this resource set.
            The resource type can differ from this.Type if this expression represents a transparent scope.
            For example, in TransparentScope{Category, Product}, the true element type is Product.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.member">
            <summary>property member name</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.keyFilter">
            <summary>key predicate</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.sequenceQueryOptions">
            <summary>sequence query options</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.transparentScope">
            <summary>enclosing transparent scope</summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.keyPredicateConjuncts">
            <summary>Key Predicate conjuncts that will make a key predicate</summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.#ctor(System.Type,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Type,System.Collections.Generic.List{System.String},System.Data.Services.Client.CountOption,System.Collections.Generic.Dictionary{System.Linq.Expressions.ConstantExpression,System.Linq.Expressions.ConstantExpression},System.Data.Services.Client.ProjectionQueryOptionExpression,System.Type,System.Version)">
            <summary>
            Creates a ResourceSet expression
            </summary>
            <param name="type">the return type of the expression</param>
            <param name="source">the source expression</param>
            <param name="memberExpression">property member name</param>
            <param name="resourceType">the element type of the resource set</param>
            <param name="expandPaths">expand paths for resource set</param>
            <param name="countOption">count query option for the resource set</param>
            <param name="customQueryOptions">custom query options for resourcse set</param>
            <param name="projection">the projection expression</param>
            <param name="resourceTypeAs">TypeAs type</param>
            <param name="uriVersion">version of the Uri from the expand and projection paths</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.CreateCloneWithNewType(System.Type)">
            <summary>
            Cast ResourceSetExpression to new type
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.CreateCloneForTransparentScope(System.Type)">
            <summary>
            Cast ResourceSetExpression to new type without affecting member type
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.ConvertKeyToFilterExpression">
            <summary>
            Converts the key expression to filter expression
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.AddFilter(System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression})">
            <summary>
            Adds a filter to this ResourceSetExpression.
            If filter is already presents, adds the predicateConjunts to the
            PredicateConjucts of the filter
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.AddSequenceQueryOption(System.Data.Services.Client.QueryOptionExpression)">
            <summary>
            Add query option to resource expression
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.RemoveFilterExpression">
            <summary>
            Removes the filter expression from current resource set.
            This happens when a separate Where clause is specified in a LINQ
            expression for every key property.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.OverrideInputReference(System.Data.Services.Client.ResourceSetExpression)">
            <summary>
            Instructs this resource set expression to use the input reference expression from <paramref name="newInput"/> as it's
            own input reference, and to retarget the input reference from <paramref name="newInput"/> to this resource set expression.
            </summary>
            <param name="newInput">The resource set expression from which to take the input reference.</param>
            <remarks>Used exclusively by <see cref="M:System.Data.Services.Client.ResourceBinder.RemoveTransparentScope(System.Type,System.Data.Services.Client.ResourceSetExpression)"/>.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.SetKeyPredicate(System.Collections.Generic.IEnumerable{System.Linq.Expressions.Expression})">
            <summary>
            Sets key predicate from given values
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.GetKeyProperties">
            <summary>
            Gets the key properties from KeyPredicateConjuncts
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.CreateCloneWithNewTypes(System.Type,System.Type)">
            <summary>
            Creates a clone of the current ResourceSetExpression with the specified expression and resource types
            </summary>
            <param name="newType">The new expression type</param>
            <param name="newResourceType">The new resource type</param>
            <returns>A copy of this with the new types</returns>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.MemberExpression">
            <summary>
            Member for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.ResourceType">
            <summary>
            Type of resources contained in this ResourceSet - it's element type.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.HasTransparentScope">
            <summary>
            Is this ResourceSet enclosed in an anonymously-typed transparent scope produced by a SelectMany operation?
            Applies to navigation ResourceSets.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.TransparentScope">
            <summary>
            The property accesses required to reference this ResourceSet and its source ResourceSet if a transparent scope is present.
            May be null. Use <see cref="P:System.Data.Services.Client.ResourceSetExpression.HasTransparentScope"/> to test for the presence of a value.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.HasKeyPredicate">
            <summary>
            Has a key predicate restriction been applied to this ResourceSet?
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.KeyPredicateConjuncts">
            <summary>
            The list of key expressions that comprise the key predicate (if any) applied to this ResourceSet.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.IsSingleton">
            <summary>
            A resource set produces at most 1 result if constrained by a key predicate
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.HasQueryOptions">
            <summary>
            Have sequence query options (filter, orderby, skip, take), expand paths, projection
            or custom query options been applied to this resource set?
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.ContainsNonKeyPredicate">
            <summary>
            If this expresssion contains at least one non-key predicate
            This indicates that a filter should be used
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.Filter">
            <summary>
            Filter query option for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.OrderBy">
            <summary>
            OrderBy query option for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.Skip">
            <summary>
            Skip query option for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.Take">
            <summary>
            Take query option for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.SequenceQueryOptions">
            <summary>
            Gets sequence query options for ResourceSet
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.ResourceSetExpression.HasSequenceQueryOptions">
            <summary>Whether there are any query options for the sequence.</summary>
        </member>
        <member name="T:System.Data.Services.Client.ResourceSetExpression.TransparentAccessors">
            <summary>
            Represents the property accesses required to access both
            this resource set and its source resource/set (for navigations).
             
            These accesses are required to reference resource sets enclosed
            in transparent scopes introduced by use of SelectMany.
            </summary>
            <remarks>
            For example, this query:
             from c in Custs where c.id == 1
             from o in c.Orders from od in o.OrderDetails select od
              
            Translates to:
             c.Where(c => c.id == 1)
              .SelectMany(c => o, (c, o) => new $(c=c, o=o))
              .SelectMany($ => $.o, ($, od) => od)
             
            PatternRules.MatchPropertyProjectionSet identifies Orders as the target of the collector.
            PatternRules.MatchTransparentScopeSelector identifies the introduction of a transparent identifer.
             
            A transparent accessor is associated with Orders, with 'c' being the source accesor,
            and 'o' being the (introduced) accessor.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.TransparentAccessors.Accessor">
            <summary>
            The property reference that must be applied to reference this resource set
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ResourceSetExpression.TransparentAccessors.SourceAccessors">
            <summary>
            The property reference that must be applied to reference the source resource set.
            Note that this set's Accessor is NOT required to access the source set, but the
            source set MAY impose it's own Transparent Accessors
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.TransparentAccessors.#ctor(System.String,System.Collections.Generic.Dictionary{System.String,System.Linq.Expressions.Expression})">
            <summary>
            Constructs a new transparent scope with the specified set and source set accessors
            </summary>
            <param name="acc">The name of the property required to access the resource set</param>
            <param name="sourceAccesors">The names of the property required to access the resource set's sources.</param>
        </member>
        <member name="M:System.Data.Services.Client.ResourceSetExpression.TransparentAccessors.ToString">
            <summary>Provides a string representation of this accessor.</summary>
            <returns>The text represntation of this accessor.</returns>
        </member>
        <member name="T:System.Data.Services.Client.SkipQueryOptionExpression">
            <summary>
            An resource specific expression representing a skip query option.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SkipQueryOptionExpression.skipAmount">
            <summary>amount to skip</summary>
        </member>
        <member name="M:System.Data.Services.Client.SkipQueryOptionExpression.#ctor(System.Type,System.Linq.Expressions.ConstantExpression)">
            <summary>
            Creates a SkipQueryOption expression
            </summary>
            <param name="type">the return type of the expression</param>
            <param name="skipAmount">the query option value</param>
        </member>
        <member name="M:System.Data.Services.Client.SkipQueryOptionExpression.ComposeMultipleSpecification(System.Data.Services.Client.QueryOptionExpression)">
            <summary>
            Composes the <paramref name="previous"/> expression with this one when it's specified multiple times.
            </summary>
            <param name="previous"><see cref="T:System.Data.Services.Client.QueryOptionExpression"/> to compose.</param>
            <returns>
            The expression that results from composing the <paramref name="previous"/> expression with this one.
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.SkipQueryOptionExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.SkipQueryOptionExpression.SkipAmount">
            <summary>
            query option value
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.TakeQueryOptionExpression">
            <summary>
            An resource specific expression representing a take query option.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.TakeQueryOptionExpression.takeAmount">
            <summary>amount to skip</summary>
        </member>
        <member name="M:System.Data.Services.Client.TakeQueryOptionExpression.#ctor(System.Type,System.Linq.Expressions.ConstantExpression)">
            <summary>
            Creates a TakeQueryOption expression
            </summary>
            <param name="type">the return type of the expression</param>
            <param name="takeAmount">the query option value</param>
        </member>
        <member name="M:System.Data.Services.Client.TakeQueryOptionExpression.ComposeMultipleSpecification(System.Data.Services.Client.QueryOptionExpression)">
            <summary>
            Composes the <paramref name="previous"/> expression with this one when it's specified multiple times.
            </summary>
            <param name="previous"><see cref="T:System.Data.Services.Client.QueryOptionExpression"/> to compose.</param>
            <returns>
            The expression that results from composing the <paramref name="previous"/> expression with this one.
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.TakeQueryOptionExpression.NodeType">
            <summary>
            The <see cref="T:System.Linq.Expressions.ExpressionType"/> of the <see cref="T:System.Linq.Expressions.Expression"/>.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.TakeQueryOptionExpression.TakeAmount">
            <summary>
            query option value
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.TypeSystem">
            <summary>Utility functions for processing Expression trees</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.OfficialSilverLightPublicKeyToken">
            <summary>Used for comparison with external assemblies for silverlight like Microsoft.VisualBasic.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.OfficialDesktopPublicKeyToken">
            <summary>Used for comparison with external assemblies for desktop like Microsoft.VisualBasic.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.VisualBasicAssemblyName">
            <summary> VB Assembly name</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.VisualBasicAssemblyPublicKeyToken">
            <summary> VB Assembly public key token</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.expressionMethodMap">
            <summary> Method map for methods in URI query options</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.expressionVBMethodMap">
            <summary> VB Method map for methods in URI query options</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.propertiesAsMethodsMap">
            <summary> Properties that should be represented as methods</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeSystem.ienumerableElementTypeCache">
            <summary>
            Cache used to store element type (TElement) for key Type if key Type implements IEnumerable{TElement} or
            null if the key Type does not implement IEnumerable{T} e.g.:
            List{Entity} - Entity
            Entity - null
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.#cctor">
            <summary>
            Initializes method map
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.TryGetQueryOptionMethod(System.Reflection.MethodInfo,System.String@)">
            <summary>
            Sees if method has URI equivalent
            </summary>
            <param name="mi">The method info</param>
            <param name="methodName">uri method name</param>
            <returns>true/ false</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.TryGetPropertyAsMethod(System.Reflection.PropertyInfo,System.Reflection.MethodInfo@)">
            <summary>
            Sees if property can be represented as method for translation to URI
            </summary>
            <param name="pi">The property info</param>
            <param name="mi">get method for property</param>
            <returns>true/ false</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.GetElementType(System.Type)">
            <summary>
            Gets the elementtype for a sequence
            </summary>
            <param name="seqType">The sequence type</param>
            <returns>The element type</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.IsPrivate(System.Reflection.PropertyInfo)">
            <summary>
            Determines whether a property is private
            </summary>
            <param name="pi">The PropertyInfo structure for the property</param>
            <returns>true/ false if property is private</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.FindIEnumerable(System.Type)">
            <summary>
            Finds type that implements IEnumerable so can get element type
            </summary>
            <param name="seqType">The Type to check</param>
            <returns>returns the type which implements IEnumerable</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.FindIEnumerableForNonPrimitiveType(System.Type)">
            <summary>Finds whether a non-primitive implements IEnumerable and returns element type if it does.</summary>
            <param name="seqType">Type to check.</param>
            <returns>Type of the element if the <paramref name="seqType"/> implements IEnumerable{T}. Otherwise null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeSystem.IsVisualBasicAssembly(System.Reflection.Assembly)">
            <summary>
            Checks if the given assembly is the VisualBasic assembly.
            </summary>
            <param name="assembly">assembly to check.</param>
            <returns>true if the assembly is Microsoft.VisualBasic, otherwise returns false.root
            </returns>
        </member>
        <member name="T:System.Data.Services.Client.UriHelper">
            <summary>utility class for helping construct uris</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.FORWARDSLASH">
            <summary>forwardslash character</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.LEFTPAREN">
            <summary>leftparan character</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.RIGHTPAREN">
            <summary>rightparan character</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.QUESTIONMARK">
            <summary>questionmark character</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.AMPERSAND">
            <summary>ampersand character</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.EQUALSSIGN">
            <summary>equals character</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.ATSIGN">
            <summary>at sign</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.DOLLARSIGN">
            <summary>dollar sign character</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.SPACE">
            <summary>space</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.COMMA">
            <summary>comma</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.COLON">
            <summary>colon</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.QUOTE">
            <summary>single quote</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.ASTERISK">
            <summary>asterisk</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONTOP">
            <summary>top</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONSKIP">
            <summary>skip</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONORDERBY">
            <summary>orderby</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONFILTER">
            <summary>where</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONDESC">
            <summary>desc</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONEXPAND">
            <summary>expand</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONCOUNT">
            <summary>inlinecount</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONSELECT">
            <summary>select</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OPTIONFORMAT">
            <summary>The $format query option.</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.COUNTALL">
            <summary>allpages</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.COUNT">
            <summary>value</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.AND">
            <summary>and</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.OR">
            <summary>or</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.EQ">
            <summary>eq</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.NE">
            <summary>ne</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.LT">
            <summary>lt</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.LE">
            <summary>le</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.GT">
            <summary>gt</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.GE">
            <summary>ge</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.ADD">
            <summary>add</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.SUB">
            <summary>sub</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.MUL">
            <summary>mul</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.DIV">
            <summary>div</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.MOD">
            <summary>mod</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.NEGATE">
            <summary>negate</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.NOT">
            <summary>not</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.NULL">
            <summary>null</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.ISOF">
            <summary>isof</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriHelper.CAST">
            <summary>cast</summary>
        </member>
        <member name="M:System.Data.Services.Client.UriHelper.GetTypeNameForUri(System.Type,System.Data.Services.Client.DataServiceContext)">
            <summary>Gets the type name to be used in the URI for the given <paramref name="type"/>.</summary>
            <param name="type">Type to get name for.</param>
            <param name="context">Data context used to generate type names for types.</param>
            <returns>The name for the <paramref name="type"/>, suitable for including in a URI.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriHelper.GetEntityTypeNameForUriAndValidateMaxProtocolVersion(System.Type,System.Data.Services.Client.DataServiceContext,System.Version@)">
            <summary>Gets the type name to be used in the URI for the given <paramref name="type"/>.</summary>
            <param name="type">Type to get name for.</param>
            <param name="context">Data context used to generate type names for types.</param>
            <param name="uriVersion">Data service version for the uri</param>
            <returns>The name for the <paramref name="type"/>, suitable for including in a URI.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriHelper.AppendTypeSegment(System.Text.StringBuilder,System.Type,System.Data.Services.Client.DataServiceContext,System.Boolean,System.Version@)">
            <summary>
            Appends a type segment to the <see cref="T:System.Text.StringBuilder"/> which is building up a URI from a query.
            </summary>
            <param name="stringBuilder">The string builder.</param>
            <param name="type">The type for the segment.</param>
            <param name="dataServiceContext">The data service context.</param>
            <param name="inPath">Whether or not the type segment is being appended within the path (as opposed to within a $filter or $orderby expression).</param>
            <param name="version">The current version.</param>
        </member>
        <member name="T:System.Data.Services.Client.ExpressionWriter">
            <summary>
            Special visitor to serialize supported expression as query parameters
            in the generated URI.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.builder">
            <summary>Internal buffer.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.context">
            <summary>Data context used to generate type names for types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.expressionStack">
            <summary>Stack of expressions being visited.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.inPath">
            <summary>Whether or not the expression being written is part of the path of the URI.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.cantTranslateExpression">
            <summary>set if can't translate expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.parent">
            <summary>Parent expression of the current expression (expression.Peek()); possibly null.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.uriVersion">
            <summary>the request data service version for the uri</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.scopeCount">
            <summary>number of sub scopes (any/all calls) on stack</summary>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.#ctor(System.Data.Services.Client.DataServiceContext,System.Boolean)">
            <summary>
            Creates an ExpressionWriter for the specified <paramref name="context"/>.
            </summary>
            <param name='context'>Data context used to generate type names for types.</param>
            <param name='inPath'>Whether or not the expression being written is part of the path of the URI.</param>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.ExpressionToString(System.Data.Services.Client.DataServiceContext,System.Linq.Expressions.Expression,System.Boolean,System.Version@)">
            <summary>
            Serializes an expression to a string
            </summary>
            <param name='context'>Data context used to generate type names for types.</param>
            <param name="e">Expression to serialize</param>
            <param name='inPath'>Whether or not the expression being written is part of the path of the URI.</param>
            <param name="uriVersion">the request data service version for the uri</param>
            <returns>serialized expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.Visit(System.Linq.Expressions.Expression)">
            <summary>Main visit method.</summary>
            <param name="exp">Expression to visit</param>
            <returns>Visited expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitConditional(System.Linq.Expressions.ConditionalExpression)">
            <summary>
            ConditionalExpression visit method
            </summary>
            <param name="c">The ConditionalExpression expression to visit</param>
            <returns>The visited ConditionalExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitLambda(System.Linq.Expressions.LambdaExpression)">
            <summary>
            LambdaExpression visit method
            </summary>
            <param name="lambda">The LambdaExpression to visit</param>
            <returns>The visited LambdaExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitNew(System.Linq.Expressions.NewExpression)">
            <summary>
            NewExpression visit method
            </summary>
            <param name="nex">The NewExpression to visit</param>
            <returns>The visited NewExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitMemberInit(System.Linq.Expressions.MemberInitExpression)">
            <summary>
            MemberInitExpression visit method
            </summary>
            <param name="init">The MemberInitExpression to visit</param>
            <returns>The visited MemberInitExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitListInit(System.Linq.Expressions.ListInitExpression)">
            <summary>
            ListInitExpression visit method
            </summary>
            <param name="init">The ListInitExpression to visit</param>
            <returns>The visited ListInitExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitNewArray(System.Linq.Expressions.NewArrayExpression)">
            <summary>
            NewArrayExpression visit method
            </summary>
            <param name="na">The NewArrayExpression to visit</param>
            <returns>The visited NewArrayExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitInvocation(System.Linq.Expressions.InvocationExpression)">
            <summary>
            InvocationExpression visit method
            </summary>
            <param name="iv">The InvocationExpression to visit</param>
            <returns>The visited InvocationExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitInputReferenceExpression(System.Data.Services.Client.InputReferenceExpression)">
            <summary>
            Input resource set references are intentionally omitted from the URL string for the top level
            refences to input parameter (i.e. outside of any/all methods).
            For parameter references to input (range variable for Where) inside any/all methods we write "$it".
            </summary>
            <param name="ire">The input reference</param>
            <returns>The same input reference expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            MethodCallExpression visit method
            </summary>
            <param name="m">The MethodCallExpression expression to visit</param>
            <returns>The visited MethodCallExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitMemberAccess(System.Linq.Expressions.MemberExpression)">
            <summary>
            Serializes an MemberExpression to a string
            </summary>
            <param name="m">Expression to serialize</param>
            <returns>MemberExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitConstant(System.Linq.Expressions.ConstantExpression)">
            <summary>
            ConstantExpression visit method
            </summary>
            <param name="c">The ConstantExpression expression to visit</param>
            <returns>The visited ConstantExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitUnary(System.Linq.Expressions.UnaryExpression)">
            <summary>
            Serializes an UnaryExpression to a string
            </summary>
            <param name="u">Expression to serialize</param>
            <returns>UnaryExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitBinary(System.Linq.Expressions.BinaryExpression)">
            <summary>
            Serializes an BinaryExpression to a string
            </summary>
            <param name="b">BinaryExpression to serialize</param>
            <returns>serialized expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitTypeIs(System.Linq.Expressions.TypeBinaryExpression)">
            <summary>
            Serializes an TypeBinaryExpression to a string
            </summary>
            <param name="b">TypeBinaryExpression to serialize</param>
            <returns>serialized expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitParameter(System.Linq.Expressions.ParameterExpression)">
            <summary>
            ParameterExpression visit method.
            </summary>
            <param name="p">The ParameterExpression expression to visit</param>
            <returns>The visited ParameterExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.AreExpressionTypesCollapsible(System.Linq.Expressions.ExpressionType,System.Linq.Expressions.ExpressionType,System.Data.Services.Client.ExpressionWriter.ChildDirection)">
            <summary>
            Indicates if two expression types are collapsible, e.g., ((a or b) or c) can be collapsed to (a or b or c).
            </summary>
            <param name="type">The expression type</param>
            <param name="parentType">The expression type of the parent expression</param>
            <param name="childDirection">Indicates if the expression is to the left or the right of the parent expression</param>
            <returns>True if the two expression types are collapsible, false otherwise</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.BinaryPrecedence(System.Linq.Expressions.ExpressionType)">
            <summary>
            Returns the precedence of a binary operator for comparison purposes, or -1 if not applicable.
            </summary>
            <param name="type">The ExpressionType representing the binary operator</param>
            <returns>The precedence of a binary operator for comparison purposes, or -1 if not applicable</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitOperand(System.Linq.Expressions.Expression)">
            <summary>
            Visits operands for Binary and Unary expressions.
            Will only output parens if operand is complex expression,
            this is so don't have unecessary parens in URI.
            </summary>
            <param name="e">The operand expression to visit</param>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.VisitOperand(System.Linq.Expressions.Expression,System.Nullable{System.Linq.Expressions.ExpressionType},System.Nullable{System.Data.Services.Client.ExpressionWriter.ChildDirection})">
            <summary>
            Visits operands for Binary and Unary expressions.
            Will only output parens if operand is complex expression,
            this is so don't have unecessary parens in URI.
            </summary>
            <param name="e">The operand expression to visit</param>
            <param name="parentType">The node type of the parent expression (if applicable)</param>
            <param name="childDirection">Indicates if the expression is to the left or the right of the parent expression</param>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.Translate(System.Linq.Expressions.Expression)">
            <summary>
            Serializes an expression to a string
            </summary>
            <param name="e">Expression to serialize</param>
            <returns>serialized expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.ExpressionWriter.IsImplicitInputReference(System.Linq.Expressions.Expression)">
            <summary>
            The references to parameter for the main predicate (.Where()) is implicit outside any/all methods.
            </summary>
            <param name="exp">The expression to test</param>
            <returns><c>true</c> if the expression represents a reference to the current (resource set) input and it is not in any/all method; otherwise <c>false</c>.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ExpressionWriter.InSubScope">
            <summary>Whether inside any/all lambda or not</summary>
        </member>
        <member name="T:System.Data.Services.Client.ExpressionWriter.ChildDirection">
            <summary>
            An enumeration indicating the direction of a child operand
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.ChildDirection.Left">
            <summary>The operand is the left child</summary>
        </member>
        <member name="F:System.Data.Services.Client.ExpressionWriter.ChildDirection.Right">
            <summary>The operand is the right child</summary>
        </member>
        <member name="T:System.Data.Services.Client.UriWriter">
            <summary>
            Translates resource bound expression trees into URIs.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UriWriter.context">
            <summary>Data context used to generate type names for types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriWriter.uriBuilder">
            <summary>stringbuilder for constructed URI</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriWriter.uriVersion">
            <summary>the request data service version for the uri</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriWriter.leafResourceSet">
            <summary>the leaf resourceset for the URI being written</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriWriter.cachedQueryOptions">
            <summary>
            For caching query options to be grouped
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.#ctor(System.Data.Services.Client.DataServiceContext)">
            <summary>
            Private constructor for creating UriWriter
            </summary>
            <param name='context'>Data context used to generate type names for types.</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.Translate(System.Data.Services.Client.DataServiceContext,System.Boolean,System.Linq.Expressions.Expression,System.Uri@,System.Version@)">
            <summary>
            Translates resource bound expression tree to a URI.
            </summary>
            <param name='context'>Data context used to generate type names for types.</param>
            <param name="addTrailingParens">flag to indicate whether generated URI should include () if leaf is ResourceSet</param>
            <param name="e">The expression to translate</param>
            <param name="uri">uri</param>
            <param name="version">version for query</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)">
            <summary>
            MethodCallExpression visit method
            </summary>
            <param name="m">The MethodCallExpression expression to visit</param>
            <returns>The visited MethodCallExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitUnary(System.Linq.Expressions.UnaryExpression)">
            <summary>
            UnaryExpression visit method
            </summary>
            <param name="u">The UnaryExpression expression to visit</param>
            <returns>The visited UnaryExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitBinary(System.Linq.Expressions.BinaryExpression)">
            <summary>
            BinaryExpression visit method
            </summary>
            <param name="b">The BinaryExpression expression to visit</param>
            <returns>The visited BinaryExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitConstant(System.Linq.Expressions.ConstantExpression)">
            <summary>
            ConstantExpression visit method
            </summary>
            <param name="c">The ConstantExpression expression to visit</param>
            <returns>The visited ConstantExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitTypeIs(System.Linq.Expressions.TypeBinaryExpression)">
            <summary>
            TypeBinaryExpression visit method
            </summary>
            <param name="b">The TypeBinaryExpression expression to visit</param>
            <returns>The visited TypeBinaryExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitConditional(System.Linq.Expressions.ConditionalExpression)">
            <summary>
            ConditionalExpression visit method
            </summary>
            <param name="c">The ConditionalExpression expression to visit</param>
            <returns>The visited ConditionalExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitParameter(System.Linq.Expressions.ParameterExpression)">
            <summary>
            ParameterExpression visit method
            </summary>
            <param name="p">The ParameterExpression expression to visit</param>
            <returns>The visited ParameterExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitMemberAccess(System.Linq.Expressions.MemberExpression)">
            <summary>
            MemberExpression visit method
            </summary>
            <param name="m">The MemberExpression expression to visit</param>
            <returns>The visited MemberExpression expression </returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitLambda(System.Linq.Expressions.LambdaExpression)">
            <summary>
            LambdaExpression visit method
            </summary>
            <param name="lambda">The LambdaExpression to visit</param>
            <returns>The visited LambdaExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitNew(System.Linq.Expressions.NewExpression)">
            <summary>
            NewExpression visit method
            </summary>
            <param name="nex">The NewExpression to visit</param>
            <returns>The visited NewExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitMemberInit(System.Linq.Expressions.MemberInitExpression)">
            <summary>
            MemberInitExpression visit method
            </summary>
            <param name="init">The MemberInitExpression to visit</param>
            <returns>The visited MemberInitExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitListInit(System.Linq.Expressions.ListInitExpression)">
            <summary>
            ListInitExpression visit method
            </summary>
            <param name="init">The ListInitExpression to visit</param>
            <returns>The visited ListInitExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitNewArray(System.Linq.Expressions.NewArrayExpression)">
            <summary>
            NewArrayExpression visit method
            </summary>
            <param name="na">The NewArrayExpression to visit</param>
            <returns>The visited NewArrayExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitInvocation(System.Linq.Expressions.InvocationExpression)">
            <summary>
            InvocationExpression visit method
            </summary>
            <param name="iv">The InvocationExpression to visit</param>
            <returns>The visited InvocationExpression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitNavigationPropertySingletonExpression(System.Data.Services.Client.NavigationPropertySingletonExpression)">
            <summary>
            NavigationPropertySingletonExpression visit method.
            </summary>
            <param name="npse">NavigationPropertySingletonExpression expression to visit</param>
            <returns>Visited NavigationPropertySingletonExpression expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitResourceSetExpression(System.Data.Services.Client.ResourceSetExpression)">
            <summary>
            ResourceSetExpression visit method.
            </summary>
            <param name="rse">ResourceSetExpression expression to visit</param>
            <returns>Visited ResourceSetExpression expression</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitQueryOptions(System.Data.Services.Client.ResourceExpression)">
            <summary>
            Visit Query options for Resource
            </summary>
            <param name="re">Resource Expression with query options</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitQueryOptionExpression(System.Data.Services.Client.SkipQueryOptionExpression)">
            <summary>
            SkipQueryOptionExpression visit method.
            </summary>
            <param name="sqoe">SkipQueryOptionExpression expression to visit</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitQueryOptionExpression(System.Data.Services.Client.TakeQueryOptionExpression)">
            <summary>
            TakeQueryOptionExpression visit method.
            </summary>
            <param name="tqoe">TakeQueryOptionExpression expression to visit</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitQueryOptionExpression(System.Data.Services.Client.FilterQueryOptionExpression)">
            <summary>
            FilterQueryOptionExpression visit method.
            </summary>
            <param name="fqoe">FilterQueryOptionExpression expression to visit</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitQueryOptionExpression(System.Data.Services.Client.OrderByQueryOptionExpression)">
            <summary>
            OrderByQueryOptionExpression visit method.
            </summary>
            <param name="oboe">OrderByQueryOptionExpression expression to visit</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitExpandOptions(System.Collections.Generic.List{System.String})">
            <summary>
            VisitExpandOptions visit method.
            </summary>
            <param name="paths">Expand Paths</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitProjectionPaths(System.Collections.Generic.List{System.String})">
            <summary>
            ProjectionPaths visit method.
            </summary>
            <param name="paths">Projection Paths</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitCountOptions">
            <summary>
            VisitCountOptions visit method.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.VisitCustomQueryOptions(System.Collections.Generic.Dictionary{System.Linq.Expressions.ConstantExpression,System.Linq.Expressions.ConstantExpression})">
            <summary>
            VisitCustomQueryOptions visit method.
            </summary>
            <param name="options">Custom query options</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.AddAsCachedQueryOption(System.String,System.String)">
            <summary>
            Caches query option to be grouped
            </summary>
            <param name="optionKey">The key.</param>
            <param name="optionValue">The value</param>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.AppendCachedQueryOptionsToUriBuilder">
            <summary>
            Append all cached query options to uri.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UriWriter.ExpressionToString(System.Linq.Expressions.Expression,System.Boolean)">
            <summary>Serializes an expression to a string.</summary>
            <param name="expression">Expression to serialize</param>
            <param name='inPath'>Whether or not the expression being written is part of the path of the URI.</param>
            <returns>The serialized expression.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceQueryProvider">
            <summary>
            QueryProvider implementation
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQueryProvider.Context">
            <summary>DataServiceContext for query provider</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryProvider.#ctor(System.Data.Services.Client.DataServiceContext)">
            <summary>Constructs a query provider based on the context passed in </summary>
            <param name="context">The context for the query provider</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryProvider.CreateQuery(System.Linq.Expressions.Expression)">
            <summary>Factory method for creating DataServiceOrderedQuery based on expression </summary>
            <param name="expression">The expression for the new query</param>
            <returns>new DataServiceQuery</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryProvider.CreateQuery``1(System.Linq.Expressions.Expression)">
            <summary>Factory method for creating DataServiceOrderedQuery based on expression </summary>
            <typeparam name="TElement">generic type</typeparam>
            <param name="expression">The expression for the new query</param>
            <returns>new DataServiceQuery</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryProvider.Execute(System.Linq.Expressions.Expression)">
            <summary>Creates and executes a DataServiceQuery based on the passed in expression</summary>
            <param name="expression">The expression for the new query</param>
            <returns>the results</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryProvider.Execute``1(System.Linq.Expressions.Expression)">
            <summary>Creates and executes a DataServiceQuery based on the passed in expression</summary>
            <typeparam name="TResult">generic type</typeparam>
            <param name="expression">The expression for the new query</param>
            <returns>the results</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryProvider.ReturnSingleton``1(System.Linq.Expressions.Expression)">
            <summary>Creates and executes a DataServiceQuery based on the passed in expression which results a single value</summary>
            <typeparam name="TElement">generic type</typeparam>
            <param name="expression">The expression for the new query</param>
            <returns>single valued results</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryProvider.Translate(System.Linq.Expressions.Expression)">
            <summary>Builds the Uri for the expression passed in.</summary>
            <param name="e">The expression to translate into a Uri</param>
            <returns>Query components</returns>
        </member>
        <member name="T:System.Data.Services.Client.ArraySet`1">
            <summary>a set, collection of unordered, distinct objects, implemented as an array</summary>
            <typeparam name="T">element type</typeparam>
        </member>
        <member name="F:System.Data.Services.Client.ArraySet`1.items">
            <summary>item array of T</summary>
        </member>
        <member name="F:System.Data.Services.Client.ArraySet`1.count">
            <summary>count of elements in the items array</summary>
        </member>
        <member name="F:System.Data.Services.Client.ArraySet`1.version">
            <summary>number of Add and RemoveAt operations</summary>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.#ctor(System.Int32)">
            <summary>
            array set with an intial capacity
            </summary>
            <param name="capacity">initial capacity</param>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.Add(`0,System.Func{`0,`0,System.Boolean})">
            <summary>add new element to the set</summary>
            <param name="item">element to add</param>
            <param name="equalityComparer">equality comparison function to avoid duplicates</param>
            <returns>true if actually added, false if a duplicate was discovered</returns>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.Contains(`0,System.Func{`0,`0,System.Boolean})">
            <summary>is the element contained within the set</summary>
            <param name="item">item to find</param>
            <param name="equalityComparer">comparer</param>
            <returns>true if the element is contained</returns>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.GetEnumerator">
            <summary>
            enumerator
            </summary>
            <returns>enumerator</returns>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            enumerator
            </summary>
            <returns>enumerator</returns>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.IndexOf(`0,System.Func{`0,`0,System.Boolean})">
            <summary>Find the current index of element within the set</summary>
            <param name="item">item to find</param>
            <param name="comparer">comparision function</param>
            <returns>index of the item else (-1)</returns>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.IndexOf``1(``0,System.Func{`0,``0},System.Func{``0,``0,System.Boolean})">
            <summary>Find the current index of element within the set</summary>
            <typeparam name="K">selected type</typeparam>
            <param name="item">item to find</param>
            <param name="select">selector for item to compare</param>
            <param name="comparer">item to compare</param>
            <returns>index of the item else (-1)</returns>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.Remove(`0,System.Func{`0,`0,System.Boolean})">
            <summary>Remove the matched item from within the set</summary>
            <param name="item">item to find within the set</param>
            <param name="equalityComparer">comparer to find item to remove</param>
            <returns>the item that was actually contained else its default</returns>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.RemoveAt(System.Int32)">
            <summary>Remove an item at a specific index from within the set</summary>
            <param name="index">index of item to remove within the set</param>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.Sort``1(System.Func{`0,``0},System.Func{``0,``0,System.Int32})">
            <summary>Sort array based on selected value out of item being stored</summary>
            <typeparam name="K">selected type</typeparam>
            <param name="selector">selector</param>
            <param name="comparer">comparer</param>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.TrimToSize">
            <summary>Sets the capacity to the actual number of elements in the ArraySet.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.IdentitySelect(`0)">
            <summary>identity selector, returns self</summary>
            <param name="arg">input</param>
            <returns>output</returns>
        </member>
        <member name="P:System.Data.Services.Client.ArraySet`1.Count">
            <summary>count of elements in the set</summary>
        </member>
        <member name="P:System.Data.Services.Client.ArraySet`1.Item(System.Int32)">
            <summary>get an item from an index in the set</summary>
            <param name="index">index to access</param>
        </member>
        <member name="T:System.Data.Services.Client.ArraySet`1.SelectorComparer`1">
            <summary>Compare selected value out of t</summary>
            <typeparam name="K">comparison type</typeparam>
        </member>
        <member name="F:System.Data.Services.Client.ArraySet`1.SelectorComparer`1.Selector">
            <summary>Select something out of T</summary>
        </member>
        <member name="F:System.Data.Services.Client.ArraySet`1.SelectorComparer`1.Comparer">
            <summary>Comparer of selected value</summary>
        </member>
        <member name="M:System.Data.Services.Client.ArraySet`1.SelectorComparer`1.System#Collections#Generic#IComparer{T}#Compare(`0,`0)">
            <summary>Compare</summary>
            <param name="x">x</param>
            <param name="y">y</param>
            <returns>int</returns>
        </member>
        <member name="T:System.Data.Services.Client.AtomMaterializerLog">
            <summary>
            Use this class to keep a log of changes done by the materializer.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.AtomMaterializerLog.mergeOption">
            <summary> The merge option. </summary>
        </member>
        <member name="F:System.Data.Services.Client.AtomMaterializerLog.clientEdmModel">
            <summary> The client edm model. </summary>
        </member>
        <member name="F:System.Data.Services.Client.AtomMaterializerLog.entityTracker">
            <summary> The entity tracker. </summary>
        </member>
        <member name="F:System.Data.Services.Client.AtomMaterializerLog.appendOnlyEntries">
            <summary>Dictionary of identity URI to instances created during previous AppendOnly moves.</summary>
        </member>
        <member name="F:System.Data.Services.Client.AtomMaterializerLog.identityStack">
            <summary>Dictionary of identity URI to tracked entities.</summary>
        </member>
        <member name="F:System.Data.Services.Client.AtomMaterializerLog.links">
            <summary>List of link descriptors (data for links and state).</summary>
        </member>
        <member name="F:System.Data.Services.Client.AtomMaterializerLog.insertRefreshObject">
            <summary>Target instance to refresh.</summary>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.#ctor(System.Data.Services.Client.MergeOption,System.Data.Services.Client.ClientEdmModel,System.Data.Services.Client.EntityTrackerBase)">
            <summary>
            Initializes a new <see cref="T:System.Data.Services.Client.AtomMaterializerLog"/> instance.
            </summary>
            <param name="mergeOption">The merge option for the log.</param>
            <param name="model">The model for the log.</param>
            <param name="entityTracker">The entity tracker for the log.</param>
            <remarks>
            Note that the merge option can't be changed.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.MergeEntityDescriptorInfo(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.EntityDescriptor,System.Boolean,System.Data.Services.Client.MergeOption)">
            <summary>
            This method is used to merge all the metadata that come in the response payload.
            </summary>
            <param name="trackedEntityDescriptor">entityDescriptor that is getting tracked by the client</param>
            <param name="entityDescriptorFromMaterializer">entityDescriptor that is returned by the materializer</param>
            <param name="mergeInfo">if true, we will need to merge all entity descriptor info, otherwise not.</param>
            <param name="mergeOption">merge option depending on which etag information needs to be merged.</param>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.ApplyToContext">
            <summary>Applies all accumulated changes to the associated data context.</summary>
            <remarks>The log should be cleared after this method successfully executed.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.Clear">
            <summary>Clears all state in the log.</summary>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.FoundExistingInstance(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Invoke this method to notify the log that an existing
            instance was found while resolving an object.
            </summary>
            <param name="entry">Entry for instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.FoundTargetInstance(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Invoke this method to notify the log that the
            target instance of a "directed" update was found.
            </summary>
            <param name="entry">Entry found.</param>
            <remarks>
            The target instance is typically the object that we
            expect will get refreshed by the response from a POST
            method.
             
            For example if a create a Customer and POST it to
            a service, the response of the POST will return the
            re-serialized instance, with (important!) server generated
            values and URIs.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.TryResolve(System.Data.Services.Client.Materialization.MaterializerEntry,System.Data.Services.Client.Materialization.MaterializerEntry@)">
            <summary>Attempts to resolve an entry from those tracked in the log.</summary>
            <param name="entry">Entry to resolve.</param>
            <param name="existingEntry">
            After invocation, an existing entry with the same identity as
            <paramref name="entry"/>; possibly null.
            </param>
            <returns>true if an existing entry was found; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.AddedLink(System.Data.Services.Client.Materialization.MaterializerEntry,System.String,System.Object)">
            <summary>
            Invoke this method to notify the log that a new link was
            added to a collection.
            </summary>
            <param name="source">
            Instance with the collection to which <paramref name="target"/>
            was added.
            </param>
            <param name="propertyName">Property name for collection.</param>
            <param name="target">Object which was added.</param>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.CreatedInstance(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Invoke this method to notify the log that a new instance
            was created.
            </summary>
            <param name="entry">Entry for the created instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.RemovedLink(System.Data.Services.Client.Materialization.MaterializerEntry,System.String,System.Object)">
            <summary>
            Invoke this method to notify the log that a link was removed
            from a collection.
            </summary>
            <param name="source">
            Instance with the collection from which <paramref name="target"/>
            was removed.
            </param>
            <param name="propertyName">Property name for collection.</param>
            <param name="target">Object which was removed.</param>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.SetLink(System.Data.Services.Client.Materialization.MaterializerEntry,System.String,System.Object)">
            <summary>
            Invoke this method to notify the log that a link was set on
            a property.
            </summary>
            <param name="source">Entry for source object.</param>
            <param name="propertyName">Name of property set.</param>
            <param name="target">Target object.</param>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.IsEntity(System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Returns true the specified entry represents an entity.
            </summary>
            <param name="entry">The materializer entry</param>
            <returns>True if the entry represents an entity.</returns>
        </member>
        <member name="M:System.Data.Services.Client.AtomMaterializerLog.IsEntity(System.Object,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Returns true the specified entry represents an entity.
            </summary>
            <param name="entity">The resolved instance</param>
            <param name="model">The client model.</param>
            <returns>True if the entry represents an entity.</returns>
        </member>
        <member name="P:System.Data.Services.Client.AtomMaterializerLog.Tracking">
            <summary>Whether changes are being tracked.</summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingPropertyKind">
            <summary>Type of property stored in BindingPropertyInfo.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingPropertyKind.BindingPropertyKindComplex">
            <summary>Property type is a complex type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingPropertyKind.BindingPropertyKindEntity">
            <summary>Property type is an entity type with keys.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingPropertyKind.BindingPropertyKindDataServiceCollection">
            <summary>Property is a DataServiceCollection.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingPropertyKind.BindingPropertyKindPrimitiveOrComplexCollection">
            <summary>Property is a collection of primitives or complex types.</summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingEntityInfo">
            <summary>Cache of information about entity types and their observable properties</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingEntityInfo.FalseObject">
            <summary>Object reference used as a 'False' flag.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingEntityInfo.TrueObject">
            <summary>Object reference used as a 'True' flag.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingEntityInfo.metadataCacheLock">
            <summary>Lock on metadata caches.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingEntityInfo.knownNonEntityTypes">
            <summary>Types which are known not to be entity types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingEntityInfo.knownObservableCollectionTypes">
            <summary>Types which are known to be (or not) collection types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingEntityInfo.bindingEntityInfos">
            <summary>Mapping between types and their corresponding entity information</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.GetObservableProperties(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>Obtain binding info corresponding to a given type</summary>
            <param name="entityType">Type for which to obtain information</param>
            <param name="model">the client model.</param>
            <returns>Info about the <paramref name="entityType"/></returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.GetClientType(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>Gets the ClientType corresponding to the given type</summary>
            <param name="entityType">Input type</param>
            <param name="model">The client model.</param>
            <returns>Corresponding ClientType</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.GetEntitySet(System.Object,System.String,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Get the entity set name for the target entity object.
            </summary>
            <param name="target">An entity object.</param>
            <param name="targetEntitySet">The 'currently known' entity set name for the target object.</param>
            <param name="model">The client model.</param>
            <returns>The entity set name for the target object.</returns>
            <remarks>
            Allow user code to provide the entity set name. If user code does not provide the entity set name, then
            this method will get the entity set name from the value of the EntitySetAttribute.
            The 'currently known' entity set name for top level collections can be provided through OEC constructor
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.IsDataServiceCollection(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Determine if the specified type is an DataServiceCollection.
            </summary>
            <remarks>
            If there a generic class in the inheritance hierarchy of the type, that has a single
            entity type paramenter T, and is assignable to DataServiceCollection(Of T), then
            the type is an DataServiceCollection.
            </remarks>
            <param name="collectionType">An object type specifier.</param>
            <param name="model">The client model.</param>
            <returns>true if the type is an DataServiceCollection; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.IsEntityType(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Determine if the specified type is an entity type.
            </summary>
            <param name="type">An object type specifier.</param>
            <param name="model">The client model.</param>
            <returns>true if the type is an entity type; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.TryGetPropertyValue(System.Object,System.String,System.Data.Services.Client.ClientEdmModel,System.Data.Services.Client.BindingEntityInfo.BindingPropertyInfo@,System.Data.Services.Client.Metadata.ClientPropertyAnnotation@,System.Object@)">
            <summary>
            Tries to get the value of a property and corresponding BindingPropertyInfo or ClientPropertyAnnotation if the property exists
            </summary>
            <param name="source">Source object whose property needs to be read</param>
            <param name="sourceProperty">Name of the source object property</param>
            <param name="model">The client model.</param>
            <param name="bindingPropertyInfo">BindingPropertyInfo corresponding to <paramref name="sourceProperty"/></param>
            <param name="clientProperty">Instance of ClientProperty corresponding to <paramref name="sourceProperty"/></param>
            <param name="propertyValue">Value of the property</param>
            <returns>true if the property exists and the value was read; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.GetBindingEntityInfoFor(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>Obtain binding info corresponding to a given type</summary>
            <param name="entityType">Type for which to obtain information</param>
            <param name="model">The client model.</param>
            <returns>Info about the <paramref name="entityType"/></returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.CanBeComplexType(System.Type)">
            <summary>Checks whether a given type can be a complex type i.e. implements INotifyPropertyChanged.</summary>
            <param name="type">Input type.</param>
            <returns>true if the type is complex type, false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.GetEntitySetAttribute(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>Gets entity set corresponding to a given type</summary>
            <param name="entityType">Intput type</param>
            <param name="model">The client model.</param>
            <returns>Entity set name for the type</returns>
        </member>
        <member name="T:System.Data.Services.Client.BindingEntityInfo.BindingPropertyInfo">
            <summary>Information about a property interesting for binding</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingEntityInfo.BindingPropertyInfo.PropertyInfo">
            <summary>Property information</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingEntityInfo.BindingPropertyInfo.PropertyKind">
            <summary>Kind of the property i.e. complex, entity or collection.</summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingEntityInfo.BindingEntityInfoPerType">
            <summary>Holder of information about entity properties for a type</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingEntityInfo.BindingEntityInfoPerType.observableProperties">
            <summary>Collection of properties interesting to the observer</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingEntityInfo.BindingEntityInfoPerType.#ctor">
            <summary>Constructor</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingEntityInfo.BindingEntityInfoPerType.EntitySet">
            <summary>Entity set of the entity</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingEntityInfo.BindingEntityInfoPerType.ClientType">
            <summary>Corresponding ClientTyp</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingEntityInfo.BindingEntityInfoPerType.ObservableProperties">
            <summary>Collection of properties interesting to the observer</summary>
        </member>
        <member name="T:System.Data.Services.Client.VertexColor">
            <summary>
            Color of each vertex to be used for Depth First Search
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.VertexColor.White">
            <summary>White color means un-visited</summary>
        </member>
        <member name="F:System.Data.Services.Client.VertexColor.Gray">
            <summary>Gray color means added to queue for DFS</summary>
        </member>
        <member name="F:System.Data.Services.Client.VertexColor.Black">
            <summary>Black color means already visited hence reachable from root</summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingGraph">
            <summary>
            The BindingGraph maps objects tracked by the DataServiceContext to vertices in a
            graph used to manage the information needed for data binding. The objects tracked
            by the BindingGraph are entity type objects and observable entity collections.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingGraph.observer">
            <summary>The observer of the graph</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingGraph.graph">
            <summary>Graph containing entities, collections and their relationships</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.#ctor(System.Data.Services.Client.BindingObserver)">
            <summary>Constructor</summary>
            <param name="observer">Observer of the graph</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AddDataServiceCollection(System.Object,System.String,System.Object,System.String)">
            <summary>Adds a DataServiceCollection to the graph</summary>
            <param name="source">Source object for the collection, this object has navigation property corresponding to collection</param>
            <param name="sourceProperty">Property in <paramref name="source"/> that corresponds to the collection</param>
            <param name="collection">Collection being added</param>
            <param name="collectionEntitySet">Entity set of entities in the collection</param>
            <returns>true if a new vertex had to be created, false if it already exists</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AddPrimitiveOrComplexCollection(System.Object,System.String,System.Object,System.Type)">
            <summary>Adds a collection of primitives or complex types to the graph</summary>
            <param name="source">Source object for the collection, this object has property corresponding to collection</param>
            <param name="sourceProperty">Property in <paramref name="source"/> that corresponds to the collection</param>
            <param name="collection">Collection being added</param>
            <param name="collectionItemType">Type of item in the collection</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AddEntity(System.Object,System.String,System.Object,System.String,System.Object)">
            <summary>Adds an entity to the graph</summary>
            <param name="source">Source object for the entity, this object has navigation property that links to entity</param>
            <param name="sourceProperty">Property in <paramref name="source"/> that links to entity</param>
            <param name="target">Entity being added</param>
            <param name="targetEntitySet">Entity set of entity being added</param>
            <param name="edgeSource">Item from which the directed edge in the graph goes into <paramref name="target"/>. This can be a collection</param>
            <returns>true if a new vertex had to be created, false if it already exists</returns>
            <remarks>
            This method processes the current 'target' entity and then recursively moves into the graph through
            the navigation properties. The 'source' is a previously processed item - it is the 'parent'
            of the target entity.
            The code generated EntitySetAttribute is processed by this method.
            A source entity can reference the target entity directly through an entity reference navigation property,
            or indirectly through a collection navigation property.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.RemoveDataServiceCollectionItem(System.Object,System.Object,System.String)">
            <summary>
            Removes the <paramref name="item"/> from the binding graph
            </summary>
            <param name="item">Item to remove</param>
            <param name="parent">Parent of the <paramref name="item"/></param>
            <param name="parentProperty">Parent property that refers to <paramref name="item"/></param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.RemoveComplexTypeCollectionItem(System.Object,System.Object)">
            <summary>
            Removes the <paramref name="item"/> from the binding graph
            </summary>
            <param name="item">Item to remove</param>
            <param name="collection">Collection that contains the <paramref name="item"/></param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.RemoveCollection(System.Object)">
            <summary>Removes all of a collection's items from the graph, but does not remove the collection.</summary>
            <param name="source">Collection containing the items to remove.</param>
            <remarks>This is used for both DataServiceCollection and collections of primitives or complex types.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.RemoveRelation(System.Object,System.String)">
            <summary>Removes a relationship between two items based on source and relation label</summary>
            <param name="source">Source item</param>
            <param name="relation">Label for relation</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.RemoveNonTrackedEntities">
            <summary>Remove all non-tracked entities from the graph</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.GetDataServiceCollectionItems(System.Object)">
            <summary>
            Returns a sequence of items belonging to a collection. Uses the children of a collection
            vertex for this enumeration.
            </summary>
            <param name="collection">Collection being enumerated.</param>
            <returns>Sequence of items belonging to the collection.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Reset">
            <summary>Reset the graph after detaching notifications for everything</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Pause(System.Object)">
            <summary>
            Temporarily pauses notifications.
            This could be used to defer notifications during collection load untill all elements have been loaded.
            </summary>
            <param name="collection">The collection to pause notifications for.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Resume(System.Object)">
            <summary>
            Resumes notifications.
            </summary>
            <param name="collection">The collection to resume notifications for.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.RemoveUnreachableVertices">
            <summary>Removes the un-reachable vertices from the graph and un-registers notification handlers</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.GetDataServiceCollectionInfo(System.Object,System.Object@,System.String@,System.String@,System.String@)">
            <summary>Get the binding information for a DataServiceCollection</summary>
            <param name="collection">Collection</param>
            <param name="source">The source object that reference the target object through a navigation property.</param>
            <param name="sourceProperty">The navigation property in the source object that reference the target object.</param>
            <param name="sourceEntitySet">The entity set of the source object.</param>
            <param name="targetEntitySet">The entity set name of the target object.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.GetPrimitiveOrComplexCollectionInfo(System.Object,System.Object@,System.String@,System.Type@)">
            <summary>Get the binding information for a collection</summary>
            <param name="collection">Collection</param>
            <param name="source">The source object that reference the target object through a collection property.</param>
            <param name="sourceProperty">The collection property in the source object that reference the target object.</param>
            <param name="collectionItemType">Type of item in the collection</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.GetAncestorEntityForComplexProperty(System.Object@,System.String@,System.Object@)">
            <summary>
            Obtains the closest ancestor entity type in the graph corresponding to a complex object vertex.
            </summary>
            <param name="entity">On input this is a complex object, on output it is the closest entity ancestor.</param>
            <param name="propertyName">On input this is a complex object's member property name, on output it is the name of corresponding property of the ancestor entity.</param>
            <param name="propertyValue">On input this is a complex object's member property value, on output it is the value of the corresponding property of the ancestor entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AddComplexObject(System.Object,System.String,System.Object)">
            <summary>
            Adds a complex typed object to the graph, also traverses all the child complex properties and adds them.
            </summary>
            <param name="source">Source object that contains the complex object, can be an entity, complex object, or a collection.</param>
            <param name="sourceProperty">Source property of complex type, is null if complex type is in a collection, otherwise is the property that references the complex object on source. </param>
            <param name="target">Target complex object value.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AddComplexObjectsFromCollection(System.Object,System.Collections.IEnumerable)">
            <summary>
            Adds complex items to the graph from the specified collection.
            </summary>
            <param name="collection">Collection that contains <paramref name="collectionItems"/>.</param>
            <param name="collectionItems">Items in <paramref name="collection"/> to add to the binding graph. May be only a subset of the total items in <paramref name="collection"/> .</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AddFromProperties(System.Object)">
            <summary>Add items to the graph, from the <paramref name="entity"/> object's properties</summary>
            <param name="entity">Object whose properties are to be explored</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AttachDataServiceCollectionNotification(System.Object)">
            <summary>Attach the CollectionChanged handler to an DataServiceCollection.</summary>
            <param name="target">An DataServiceCollection.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AttachPrimitiveOrComplexCollectionNotification(System.Object)">
            <summary>Attach the CollectionChanged handler to a collection of primitives or complex types.</summary>
            <param name="collection">An ICollection of T, where T is the type of the item in the collection.</param>
            <returns>True if the collection is attached; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.AttachEntityOrComplexObjectNotification(System.Object)">
            <summary>Attach the PropertyChanged handler to an entity or complex object.</summary>
            <param name="target">An entity or complex object.</param>
            <returns>True if the target is attached; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.DetachNotifications(System.Object)">
            <summary>Detach CollectionChanged or PropertyChanged handlers from the target</summary>
            <param name="target">An entity object or collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.DetachCollectionNotifications(System.Object)">
            <summary>Detach CollectionChanged handlers from the target</summary>
            <param name="target">A collection object</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.SetObserver``1(System.Collections.ICollection)">
            <summary>
            Sets the observer for a child DataServiceCollection
            </summary>
            <typeparam name="T">Entity type for the collection</typeparam>
            <param name="collection">Non-typed collection interface</param>
        </member>
        <member name="T:System.Data.Services.Client.BindingGraph.Graph">
            <summary>Graph implementation for tracking entities, collections for binding</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingGraph.Graph.vertices">
            <summary>Vertices of the graph, which also hold edges</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingGraph.Graph.root">
            <summary>The root vertex for the graph, DFS traversals start from this vertex</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.#ctor">
            <summary>Constructor</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.AddVertex(System.Object)">
            <summary>Adds vertex to the graph</summary>
            <param name="item">Item corresponding to vertex</param>
            <returns>Newly created vertex</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.ClearEdgesForVertex(System.Data.Services.Client.BindingGraph.Vertex)">
            <summary>Removes all edges going out of and coming into the given vertex</summary>
            <param name="v">Vertex whose edges are to be cleared</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.ExistsVertex(System.Object)">
            <summary>
            Checks if a vertex exists corresponding to given <paramref name="item"/>
            </summary>
            <param name="item">Item to lookup</param>
            <returns>true if vertex found, false otherwise</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.LookupVertex(System.Object)">
            <summary>Looksup the vertex corresponding to <paramref name="item"/></summary>
            <param name="item">Item to lookup</param>
            <returns>Vertex corresponding to item</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.AddEdge(System.Object,System.Object,System.String)">
            <summary>
            Adds edge between vertices corresponding to <paramref name="source"/> and <paramref name="target"/>
            objects which will be labeled with <paramref name="label"/>
            </summary>
            <param name="source">Outgoing end of the edge</param>
            <param name="target">Incoming end of the edge</param>
            <param name="label">Label for the vertex</param>
            <returns>Newly created edge</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.RemoveEdge(System.Object,System.Object,System.String)">
            <summary>
            Removes edge between vertices corresponding to <paramref name="source"/> and <paramref name="target"/>
            objects which was labeled with <paramref name="label"/>
            </summary>
            <param name="source">Outgoing end of the edge</param>
            <param name="target">Incoming end of the edge</param>
            <param name="label">Label for the vertex</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.ExistsEdge(System.Object,System.Object,System.String)">
            <summary>
            Checks if an edge exists between <paramref name="source"/> and <paramref name="target"/> labeled
            with <paramref name="label"/>
            </summary>
            <param name="source">Outgoing end of the edge</param>
            <param name="target">Incoming end of the edge</param>
            <param name="label">Label for the vertex</param>
            <returns>true if an edge exists between source and target with given label, false otherwise</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.Select(System.Func{System.Object,System.Boolean})">
            <summary>
            Selects collection of objects tracked by the graph based on the given filter
            </summary>
            <param name="filter">Filter for the objects</param>
            <returns>Filtered list of objects tracked by the graph</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.Reset(System.Action{System.Object})">
            <summary>
            Removes everything from the graph after applying <paramref name="action"/>
            </summary>
            <param name="action">Action to apply before removal of each node</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.RemoveUnreachableVertices(System.Action{System.Object})">
            <summary>Remove all vertices from graph that are unreachable from the root collection vertex</summary>
            <param name="detachAction">Action to perform for each removed vertex</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Graph.UnreachableVertices">
            <summary>Collects all vertices unreachable from the root collection vertex</summary>
            <returns>Sequence of vertices that are unreachable from the root collection vertex</returns>
            <remarks>
            Performs a depth first traversal of the graph starting from the root collection
            vertex and checks if some vertices were unreachable was reached while doing the traversal.
            Alogrithm from Introduction to Algorithms 22.2 by Cormen et al.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Graph.Root">
            <summary>Root vertex of the graph</summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingGraph.Vertex">
            <summary>Vertex of the <see cref="T:System.Data.Services.Client.BindingGraph.Graph"/></summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingGraph.Vertex.incomingEdges">
            <summary>Collection of incoming edges for the vertex</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingGraph.Vertex.outgoingEdges">
            <summary>Hashed collection of outgoing edges for the vertex</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingGraph.Vertex.edgeComparer">
            <summary>
            Comparer for compairing Edge's in the outgoingEdges hash set.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Vertex.#ctor(System.Object)">
            <summary>Constructor</summary>
            <param name="item">Item corresponding to vertex</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Vertex.GetDataServiceCollectionInfo(System.Object@,System.String@,System.String@,System.String@)">
            <summary>Get the binding information for a collection vertex</summary>
            <param name="source">The source object that reference the target object through a navigation property corresponding to current collection vertex.</param>
            <param name="sourceProperty">The navigation property in the source object that reference the target object.</param>
            <param name="sourceEntitySet">The entity set of the source object.</param>
            <param name="targetEntitySet">The entity set of the target object.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Vertex.GetPrimitiveOrComplexCollectionInfo(System.Object@,System.String@,System.Type@)">
            <summary>Get the binding information for a collection vertex</summary>
            <param name="source">The source object that reference the target object through a collection property corresponding to current collection vertex.</param>
            <param name="sourceProperty">The collection property in the source object that references the collection object.</param>
            <param name="collectionItemType">Type of item in the collection.</param>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.Item">
            <summary>Item corresponding to the vertex</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.EntitySet">
            <summary>Entity set of the item held by the vertex</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.IsDataServiceCollection">
            <summary>Is item a DataServiceCollection object</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.IsComplex">
            <summary>Is item a complex type object</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.IsPrimitiveOrComplexCollection">
            <summary>Is item a collection of primitives or complex types</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.PrimitiveOrComplexCollectionItemType">
            <summary>Type of items in the collection if this items represents a collection of primitives or complex types</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.Parent">
            <summary>Parent vertex, only exists for non-top level collection vertices or complex objects</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.ParentProperty">
            <summary>Property of the <see cref="P:System.Data.Services.Client.BindingGraph.Vertex.Parent"/> object that associates this vertex with it's parent</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.IsRootDataServiceCollection">
            <summary>Is item a root collection object</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.Color">
            <summary>Color of the vertex</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.IncomingEdges">
            <summary>Edges coming into this vertex</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Vertex.OutgoingEdges">
            <summary>Edges going out of this vertex</summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingGraph.Edge">
            <summary>
            Edge between two vertices of graph, directed and labeled
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Edge.#ctor(System.Data.Services.Client.BindingGraph.Vertex,System.Data.Services.Client.BindingGraph.Vertex,System.String)">
            <summary>
            Constructor.
            </summary>
            <remarks>
            Introduced to ensure that Source, Target and Label is not changed after construction, as we want the HashCode to be immutable.
            </remarks>
            <param name="source">Source vertex</param>
            <param name="target">Target vertex</param>
            <param name="label">Label of the edge</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.Edge.Equals(System.Data.Services.Client.BindingGraph.Edge)">
            <summary>IEquatable override</summary>
            <param name="other">Comparand</param>
            <returns>true if equal, false otherwise</returns>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Edge.Source">
            <summary>Source vertex</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Edge.Target">
            <summary>Target vertex</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingGraph.Edge.Label">
            <summary>Label of the edge</summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingGraph.EdgeComparer">
            <summary>
            EqualityComparer for Edge's
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.EdgeComparer.Equals(System.Data.Services.Client.BindingGraph.Edge,System.Data.Services.Client.BindingGraph.Edge)">
            <summary>
            Compares two edges for equality.
            </summary>
            <param name="x">Edge x</param>
            <param name="y">Edge y</param>
            <returns>true if they are equal, false otherwise</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingGraph.EdgeComparer.GetHashCode(System.Data.Services.Client.BindingGraph.Edge)">
            <summary>
            Computes the HashCode for an Edge based on Source, Target and Label
            </summary>
            <param name="obj">The Edge to compute the HashCode for</param>
            <returns>The computed HashCode</returns>
        </member>
        <member name="T:System.Data.Services.Client.BindingObserver">
            <summary>The BindingObserver class</summary>
        </member>
        <member name="F:System.Data.Services.Client.BindingObserver.bindingGraph">
            <summary>
            The BindingGraph maps objects tracked by the DataServiceContext to vertices in a
            graph used to manage the information needed for data binding. The objects tracked
            by the BindingGraph are entities, complex types and DataServiceCollections.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.#ctor(System.Data.Services.Client.DataServiceContext,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
            <summary>Constructor</summary>
            <param name="context">The DataServiceContext associated with the BindingObserver.</param>
            <param name="entityChanged">EntityChanged delegate.</param>
            <param name="collectionChanged">EntityCollectionChanged delegate.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.PauseTracking(System.Object)">
            <summary>
            Temporarily pauses notifications.
            This is used during collection Load to defer notifications untill all elements have been loaded.
            </summary>
            <param name="collection">The collection to pause notifications for</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.ResumeTracking(System.Object)">
            <summary>
            Resumes notifications.
            </summary>
            <param name="collection">The collection to resume notifications for.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.StartTracking``1(System.Data.Services.Client.DataServiceCollection{``0},System.String)">
            <summary>Start tracking the specified DataServiceCollection.</summary>
            <typeparam name="T">An entity type.</typeparam>
            <param name="collection">An DataServiceCollection.</param>
            <param name="collectionEntitySet">The entity set of the elements in <paramref name="collection"/>.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.StopTracking">
            <summary>Stop tracking the root DataServiceCollection associated with the observer.</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.LookupParent``1(System.Data.Services.Client.DataServiceCollection{``0},System.Object@,System.String@)">
            <summary>
            Looks up parent entity that references <param ref="collection" />.
            </summary>
            <typeparam name="T">Type of DataServiceCollection.</typeparam>
            <param name="collection">DataService collection</param>
            <param name="parentEntity">Parent entity that references <param ref="collection" />. May return null if there is none.</param>
            <param name="parentProperty">Navigation property in the parentEntity that references <param ref="collection" />. May return null if there is no parent entity.</param>
            <returns>True if parent entity was found, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnPropertyChanged(System.Object,System.ComponentModel.PropertyChangedEventArgs)">
            <summary>Handle changes to tracked entity.</summary>
            <param name="source">The entity that raised the event.</param>
            <param name="eventArgs">Information about the event such as changed property name.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnDataServiceCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
            <summary>Handle changes to tracked DataServiceCollection.</summary>
            <param name="collection">The DataServiceCollection that raised the event.</param>
            <param name="eventArgs">Information about the event such as added/removed entities, operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnDataServiceCollectionBulkAdded(System.Object,System.Collections.IEnumerable)">
            <summary>Handle multiple additions to tracked DataServiceCollection.</summary>
            <remarks>This is an optimized version of <see cref="M:System.Data.Services.Client.BindingObserver.OnDataServiceCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)"/> for bulk adding of many entities.</remarks>
            <param name="collection">The DataServiceCollection that newItems were added to.</param>
            <param name="newItems">The entities that were added to the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnPrimitiveOrComplexCollectionChanged(System.Object,System.Collections.Specialized.NotifyCollectionChangedEventArgs)">
            <summary>Handle changes to collection properties.</summary>
            <param name="sender">The collection that raised the event.</param>
            <param name="e">Information about the event such as added/removed items, operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.HandleAddEntity(System.Object,System.String,System.String,System.Collections.ICollection,System.Object,System.String)">
            <summary>Handle Adds to a tracked DataServiceCollection. Perform operations on context to reflect the changes.</summary>
            <param name="source">The source object that reference the target object through a navigation property.</param>
            <param name="sourceProperty">The navigation property in the source object that reference the target object.</param>
            <param name="sourceEntitySet">The entity set of the source object.</param>
            <param name="collection">The collection containing the target object.</param>
            <param name="target">The target entity to attach.</param>
            <param name="targetEntitySet">The entity set name of the target object.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.HandleDeleteEntity(System.Object,System.String,System.String,System.Collections.ICollection,System.Object,System.String)">
            <summary>Handle Deletes from a tracked DataServiceCollection. Perform operations on context to reflect the changes.</summary>
            <param name="source">The source object that reference the target object through a navigation property.</param>
            <param name="sourceProperty">The navigation property in the source object that reference the target object.</param>
            <param name="sourceEntitySet">The entity set of the source object.</param>
            <param name="collection">The collection containing the target object.</param>
            <param name="target">The target entity.</param>
            <param name="targetEntitySet">The entity set name of the target object.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.HandleUpdateEntityReference(System.Object,System.String,System.String,System.Object,System.String)">
            <summary>Handle changes to navigation properties of a tracked entity. Perform operations on context to reflect the changes.</summary>
            <param name="source">The source object that reference the target object through a navigation property.</param>
            <param name="sourceProperty">The navigation property in the source object that reference the target object.</param>
            <param name="sourceEntitySet">The entity set of the source object.</param>
            <param name="target">The target entity.</param>
            <param name="targetEntitySet">The entity set name of the target object.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.IsContextTrackingEntity(System.Object)">
            <summary>Determine if the DataServiceContext is tracking the specified entity.</summary>
            <param name="entity">An entity object.</param>
            <returns>true if the entity is tracked; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.HandleUpdateEntity(System.Object,System.String,System.Object)">
            <summary>
            Handle changes to an entity object tracked by the BindingObserver
            </summary>
            <param name="entity">The entity object that has changed.</param>
            <param name="propertyName">The property of the target entity object that has changed.</param>
            <param name="propertyValue">The value of the changed property of the target object.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnAddToDataServiceCollection(System.Collections.Specialized.NotifyCollectionChangedEventArgs,System.Object,System.String,System.String,System.Object)">
            <summary>Processes the INotifyCollectionChanged.Add event.</summary>
            <param name="eventArgs">Event information such as added items.</param>
            <param name="source">Parent entity to which collection belongs.</param>
            <param name="sourceProperty">Parent entity property referring to collection.</param>
            <param name="targetEntitySet">Entity set of the collection.</param>
            <param name="collection">Collection that changed.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnRemoveFromDataServiceCollection(System.Collections.Specialized.NotifyCollectionChangedEventArgs,System.Object,System.String,System.Object)">
            <summary>Processes the INotifyCollectionChanged.Remove event.</summary>
            <param name="eventArgs">Event information such as deleted items.</param>
            <param name="source">Parent entity to which collection belongs.</param>
            <param name="sourceProperty">Parent entity property referring to collection.</param>
            <param name="collection">Collection that changed.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.RemoveWithDetachDataServiceCollection(System.Object)">
            <summary>Removes a collection from the binding graph and detaches each item.</summary>
            <param name="collection">Collection whose elements are to be removed and detached.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.DeepRemoveDataServiceCollection(System.Collections.IEnumerable,System.Object,System.String,System.Action{System.Object})">
            <summary>Performs a Deep removal of all entities in a collection.</summary>
            <param name="collection">Collection whose items are removed from binding graph.</param>
            <param name="source">Parent item whose property refer to the <paramref name="collection"/> being cleared.</param>
            <param name="sourceProperty">Property of the <paramref name="source"/> that refers to <paramref name="collection"/>.</param>
            <param name="itemValidator">Validation method if any that checks the individual item in <paramref name="collection"/> for validity.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnAddToComplexTypeCollection(System.Object,System.Collections.IList)">
            <summary>
            Handles additions to collections of complex types.
            </summary>
            <param name="collection">Collection that contains the new items.</param>
            <param name="newItems">Items that were added to the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnRemoveFromComplexTypeCollection(System.Object,System.Collections.IList)">
            <summary>
            Handles removals from collections of complex types.
            </summary>
            <param name="collection">Collection that no longer contains the items.</param>
            <param name="items">Items that were removed from the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.OnChangesSaved(System.Object,System.Data.Services.Client.SaveChangesEventArgs)">
            <summary>Handle the DataServiceContext.SaveChanges operation.</summary>
            <param name="sender">DataServiceContext for the observer.</param>
            <param name="eventArgs">Information about SaveChanges operation results.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.CollectUnTrackingInfo(System.Object,System.Object,System.String,System.Collections.Generic.IList{System.Data.Services.Client.BindingObserver.UnTrackingInfo})">
            <summary>Collects a list of entities that observer is supposed to stop tracking</summary>
            <param name="currentEntity">Entity being delete along with it's children</param>
            <param name="parentEntity">Parent of the <paramref name="currentEntity"/></param>
            <param name="parentProperty">Property by which <paramref name="parentEntity"/> refers to <paramref name="currentEntity"/></param>
            <param name="entitiesToUnTrack">List in which entities to be untracked are collected</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.IsContextTrackingLink(System.Object,System.String,System.Object)">
            <summary>Determine if the DataServiceContext is tracking link between <paramref name="source"/> and <paramref name="target"/>.</summary>
            <param name="source">The source object side of the link.</param>
            <param name="sourceProperty">A property in the source side of the link that references the target.</param>
            <param name="target">The target object side of the link.</param>
            <returns>True if the link is tracked; otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.IsDetachedOrDeletedFromContext(System.Object)">
            <summary>Checks whether the given entity is in detached or deleted state.</summary>
            <param name="entity">Entity being checked.</param>
            <returns>true if the entity is detached or deleted, otherwise returns false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingObserver.ValidateDataServiceCollectionItem(System.Object)">
            <summary>Entity validator that checks if the <paramref name="target"/> is of entity type.</summary>
            <param name="target">Entity being validated.</param>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.Context">
            <summary>The DataServiceContext associated with the BindingObserver.</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.AttachBehavior">
            <summary>The behavior of add operations should be Attach or Add on the context.</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.DetachBehavior">
            <summary>The behavior of remove operations should be Detach on the context.</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.EntityChanged">
            <summary>
            Callback invoked when a property of an entity object tracked by the BindingObserver has changed.
            </summary>
            <remarks>
            Entity objects tracked by the BindingObserver implement INotifyPropertyChanged. Events of this type
            flow throw the EntityChangedParams. If this callback is not implemented by user code, or the user code
            implementation returns false, the BindingObserver executes a default implementation for the callback.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.CollectionChanged">
            <summary>
            Callback invoked when an DataServiceCollection tracked by the BindingObserver has changed.
            </summary>
            <remarks>
            DataServiceCollection objects tracked by the BindingObserver implement INotifyCollectionChanged.
            Events of this type flow throw the EntityCollectionChanged callback. If this callback is not
            implemented by user code, or the user code implementation returns false, the BindingObserver executes
            a default implementation for the callback.
            </remarks>
        </member>
        <member name="T:System.Data.Services.Client.BindingObserver.UnTrackingInfo">
            <summary>Information regarding each entity to be untracked</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.UnTrackingInfo.Entity">
            <summary>Entity to untrack</summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.UnTrackingInfo.Parent">
            <summary>Parent object of <see cref="P:System.Data.Services.Client.BindingObserver.UnTrackingInfo.Entity"/></summary>
        </member>
        <member name="P:System.Data.Services.Client.BindingObserver.UnTrackingInfo.ParentProperty">
            <summary>Parent object property referring to <see cref="P:System.Data.Services.Client.BindingObserver.UnTrackingInfo.Entity"/></summary>
        </member>
        <member name="T:System.Data.Services.Client.BindingUtils">
            <summary>Utilities for binding related operations</summary>
        </member>
        <member name="M:System.Data.Services.Client.BindingUtils.ValidateEntitySetName(System.String,System.Object)">
            <summary>
            Throw if the entity set name is null or empty
            </summary>
            <param name="entitySetName">entity set name.</param>
            <param name="entity">entity instance for which the entity set name is generated.</param>
        </member>
        <member name="M:System.Data.Services.Client.BindingUtils.GetCollectionEntityType(System.Type)">
            <summary>
            Given a collection type, gets it's entity type
            </summary>
            <param name="collectionType">Input collection type</param>
            <returns>Generic type argument for the collection</returns>
        </member>
        <member name="M:System.Data.Services.Client.BindingUtils.VerifyObserverNotPresent``1(System.Object,System.String,System.Type)">
            <summary>Verifies the absence of observer for an DataServiceCollection</summary>
            <typeparam name="T">Type of DataServiceCollection</typeparam>
            <param name="oec">Non-typed collection object</param>
            <param name="sourceProperty">Collection property of the source object which is being assigned to</param>
            <param name="sourceType">Type of the source object</param>
        </member>
        <member name="T:System.Data.Services.Client.SaveChangesEventArgs">
            <summary>
            Encapsulates the arguments for the DataServiceContext ChangesSaved event
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveChangesEventArgs.response">
            <summary>
            DataServiceContext SaveChanges response
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.SaveChangesEventArgs.#ctor(System.Data.Services.Client.DataServiceResponse)">
            <summary>
            Construct a DataServiceSaveChangesEventArgs object.
            </summary>
            <param name="response">DataServiceContext SaveChanges response</param>
        </member>
        <member name="T:System.Data.Services.Client.EntityChangedParams">
            <summary>Encapsulates the arguments of a <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged" /> delegate</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityChangedParams.context">
            <summary>Context associated with the BindingObserver.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityChangedParams.entity">
            <summary>The entity object that has changed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityChangedParams.propertyName">
            <summary>The property of the entity that has changed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityChangedParams.propertyValue">
            <summary>The current value of the target property.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityChangedParams.sourceEntitySet">
            <summary>Entity set to which the entity object belongs</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityChangedParams.targetEntitySet">
            <summary>Entity set to which the target propertyValue entity belongs</summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityChangedParams.#ctor(System.Data.Services.Client.DataServiceContext,System.Object,System.String,System.Object,System.String,System.String)">
            <summary>
            Construct an EntityChangedParams object.
            </summary>
            <param name="context">Context to which the entity and propertyValue belong.</param>
            <param name="entity">The entity object that has changed.</param>
            <param name="propertyName">The property of the target entity object that has changed.</param>
            <param name="propertyValue">The current value of the entity property.</param>
            <param name="sourceEntitySet">Entity set to which the entity object belongs</param>
            <param name="targetEntitySet">Entity set to which the target propertyValue entity belongs</param>
        </member>
        <member name="P:System.Data.Services.Client.EntityChangedParams.Context">
            <summary>The context that is associated with the entity object that has changed.</summary>
            <returns>The context that is tracking the changed object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityChangedParams.Entity">
            <summary>The entity object that has changed.</summary>
            <returns>The changed object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityChangedParams.PropertyName">
            <summary>The name of the property on the entity object that references the target object.</summary>
            <returns>The name of the changed property.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityChangedParams.PropertyValue">
            <summary>The object that is currently referenced by the changed property on the entity object.</summary>
            <returns>The current value that references a target entity. </returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityChangedParams.SourceEntitySet">
            <summary>The entity set of the source object.</summary>
            <returns>An entity set name.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityChangedParams.TargetEntitySet">
            <summary>The entity set to which the target entity object belongs</summary>
            <returns>An entity set name.</returns>
        </member>
        <member name="T:System.Data.Services.Client.EntityCollectionChangedParams">
            <summary>Encapsulates the arguments of a <see cref="E:System.Collections.Specialized.INotifyCollectionChanged.CollectionChanged" /> delegate.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.context">
            <summary>Context associated with the BindingObserver.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.sourceEntity">
            <summary>
            The source object that references the target object through a collection navigation property.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.propertyName">
            <summary>The property of the source object that references the collection that has changed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.sourceEntitySet">
            <summary>The entity set of the source object.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.collection">
            <summary>The collection that has changed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.targetEntity">
            <summary>The target entity object involved in the change.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.targetEntitySet">
            <summary>The entity set name of the target object.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityCollectionChangedParams.action">
            <summary>
            The action that indicates how the collection was changed. The value will be Add or Remove.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityCollectionChangedParams.#ctor(System.Data.Services.Client.DataServiceContext,System.Object,System.String,System.String,System.Collections.ICollection,System.Object,System.String,System.Collections.Specialized.NotifyCollectionChangedAction)">
            <summary>
            Construct an EntityCollectionChangedParams object.
            </summary>
            <param name="context">The DataServiceContext associated with the BindingObserver.</param>
            <param name="sourceEntity">The source object that references the target object through a collection navigation property.</param>
            <param name="propertyName">The property of the source object that references the collection that has changed.</param>
            <param name="sourceEntitySet">The entity set of the source object.</param>
            <param name="collection">The collection that has changed.</param>
            <param name="targetEntity">The target entity object involved in the change.</param>
            <param name="targetEntitySet">The entity set name of the target object.</param>
            <param name="action">The action that indicates how the collection was changed. The value will be Add or Remove.</param>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.Context">
            <summary>The <see cref="T:System.Data.Services.Client.DataServiceContext" /> associated with the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> that has changed.</summary>
            <returns>The context associated with the collection that has changed</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.SourceEntity">
            <summary>The source object that references the target object in the collection by using a navigation property. </summary>
            <returns>The source object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.PropertyName">
            <summary>The navigation property on the source object that references the collection that has changed.</summary>
            <returns>The navigation property name.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.SourceEntitySet">
            <summary>The entity set of the source object.</summary>
            <returns>An entity set name.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.TargetEntity">
            <summary>The entity object in the collection that has changed.</summary>
            <returns>The changed entity object in the collection.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.TargetEntitySet">
            <summary>The entity set name of the object in the collection.</summary>
            <returns>An entity set name.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.Collection">
            <summary>The <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> that has changed.</summary>
            <returns>A reference to the collection that has changed.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityCollectionChangedParams.Action">
            <summary>A <see cref="T:System.Collections.Specialized.NotifyCollectionChangedAction" /> value that indicates how the collection was changed. </summary>
            <returns>A value that indicates how the collection was changed.</returns>
        </member>
        <member name="T:System.Data.Services.Client.TrackingMode">
            <summary>Determines whether changes that are made to a <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> are tracked.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TrackingMode.None">
            <summary>The collection should not track changes.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TrackingMode.AutoChangeTracking">
            <summary>The collection should automatically track changes to the entities
            in the collection.</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceCollection`1">
            <summary>Represents a dynamic entity collection that provides notifications when items get added, removed, or when the list is refreshed.</summary>
            <typeparam name="T">An entity type.</typeparam>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.observer">
            <summary>The BindingObserver associated with the DataServiceCollection</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.rootCollection">
            <summary>Is this a root collection</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.continuation">
            <summary>The continuation for partial collections.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.trackingOnLoad">
            <summary>True if tracking setup was deferred to first Load() call.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.entityChangedCallback">
            <summary>Callback tracked until tracking is enabled.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.collectionChangedCallback">
            <summary>Callback tracked until tracking is enabled.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.entitySetName">
            <summary>Entity set name tracked until tracking is enabled.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.ongoingAsyncOperation">
            <summary>
            The async handle for the current LoadAsync Operation
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceCollection`1.hashedItems">
            <summary>
            A hashed set of the entities in this DataServiceCollection. Optimization - used for faster detection of item prescense in the collection.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class.</summary>
            <remarks>Creates a default data service collection, with auto-change tracking enabled as soon as data is loaded into it.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0})">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class based on query execution.</summary>
            <param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Data.Services.Client.TrackingMode)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class based on query execution and with the specified tracking mode.</summary>
            <param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
            <param name="trackingMode">A <see cref="T:System.Data.Services.Client.TrackingMode" /> value that indicated whether or not changes made to items in the collection are automatically tracked.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Data.Services.Client.DataServiceContext)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class that uses the specified <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
            <param name="context">The <see cref="T:System.Data.Services.Client.DataServiceContext" /> used to track changes to objects in the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Data.Services.Client.DataServiceContext,System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class with the supplied change method delegates and that uses the specified <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
            <param name="context">The <see cref="T:System.Data.Services.Client.DataServiceContext" /> used to track items in the collection.</param>
            <param name="entitySetName">The entity set of the objects in the collection.</param>
            <param name="entityChangedCallback">A delegate that encapsulates a method that is called when an entity changes.</param>
            <param name="collectionChangedCallback">A delegate that encapsulates a method that is called when the collection of entities changes.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Collections.Generic.IEnumerable{`0},System.Data.Services.Client.TrackingMode,System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class based on query execution and with the supplied change method delegates.</summary>
            <param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
            <param name="trackingMode">A <see cref="T:System.Data.Services.Client.TrackingMode" /> value that indicated whether or not changes made to items in the collection are automatically tracked.</param>
            <param name="entitySetName">The entity set of the objects in the collection.</param>
            <param name="entityChangedCallback">A delegate that encapsulates a method that is called when an entity changes.</param>
            <param name="collectionChangedCallback">A delegate that encapsulates a method that is called when the collection of entities changes.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Data.Services.Client.DataServiceContext,System.Collections.Generic.IEnumerable{`0},System.Data.Services.Client.TrackingMode,System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" /> class based on query execution, with the supplied change method delegates, and that uses the supplied <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
            <param name="context">The <see cref="T:System.Data.Services.Client.DataServiceContext" /> used to track items in the collection.</param>
            <param name="items">A <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> or LINQ query that returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> collection of objects that are used to initialize the collection.</param>
            <param name="trackingMode">A <see cref="T:System.Data.Services.Client.TrackingMode" /> value that indicated whether or not changes made to items in the collection are automatically tracked.</param>
            <param name="entitySetName">The entity set of the objects in the collection.</param>
            <param name="entityChangedCallback">A delegate that encapsulates a method that is called when an entity changes.</param>
            <param name="collectionChangedCallback">A delegate that encapsulates a method that is called when the collection of entities changes.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.#ctor(System.Object,System.Data.Services.Client.DataServiceContext,System.Collections.Generic.IEnumerable{`0},System.Data.Services.Client.TrackingMode,System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
            <summary>Creates new DataServiceCollection.</summary>
            <param name="entityMaterializer">The materializer</param>
            <param name="context"><see cref="T:System.Data.Services.Client.DataServiceContext"/> associated with the new collection.</param>
            <param name="items">Enumeration of items to initialize the new DataServiceCollection with.</param>
            <param name="trackingMode">The tracking mode for the new collection.</param>
            <param name="entitySetName">The name of the entity set the elements in the collection belong to.</param>
            <param name="entityChangedCallback">Delegate that gets called when an entity changes.</param>
            <param name="collectionChangedCallback">Delegate that gets called when an entity collection changes.</param>
            <remarks>This is the internal constructor called from materializer and used inside our projection queries.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.Load(System.Collections.Generic.IEnumerable{`0})">
            <summary>Loads a collection of entity objects into the collection.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <param name="items">Collection of entity objects to be added to the <see cref="T:System.Data.Services.Client.DataServiceCollection`1" />.</param>
            <remarks>
            When tracking is enabled, the behavior of Load would be to attach all those entities that are not already tracked by the context
            associated with the collection. The operation will go deep into the input entities so that all related
            entities are attached to the context if not already present. All entities in <paramref name="items"/>
            will be tracked after Load is done.
            Load method checks for duplication. The collection will ignore any duplicated items been loaded.
            For large amount of items, consider DataServiceContext.LoadProperty instead.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync(System.Linq.IQueryable{`0})">
            <summary>Asynchronously loads the collection by executing a <see cref="T:System.Data.Services.Client.DataServiceQuery`1"/>.Supported only by the WCF Data Services 5.0 client for Silverlight.</summary>
            <param name="query">The <see cref="T:System.Data.Services.Client.DataServiceQuery`1"/> that, when executed, returns the entities to load into the collection.</param>
            <exception cref="T:System.ArgumentException">When query is null or not a <see cref="T:System.Data.Services.Client.DataServiceQuery`1"/>.</exception>
            <exception cref="T:System.InvalidOperationException">When a previous call to <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync"/> is not yet complete.</exception>
            <remarks>This method uses the event-based async pattern.
            The method returns immediately without waiting for the query to complete. Then it calls the handler of the
            <see cref="E:System.Data.Services.Client.DataServiceCollection`1.LoadCompleted"/> event exactly once on the UI thread. The event will be raised regradless
            if the query succeeded or not.
            This class only support one asynchronous operation in flight.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync(System.Uri)">
            <summary>Loads the collection asynchronously by loading the results from the request Uri.</summary>
            <param name="requestUri">The request uri to download results from.</param>
            <remarks>This method uses the event-based async pattern.
            The method returns immediately without waiting for the query to complete. Then it calls the handler of the
            <see cref="E:System.Data.Services.Client.DataServiceCollection`1.LoadCompleted"/> event exactly once on the UI thread. The event will be raised regradless
            if the query succeeded or not.
            This class only support one asynchronous operation in flight.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync">
            <summary>Asynchronously loads items into the collection, when it represents the navigation property of an entity.Supported only by the WCF Data Services 5.0 client for Silverlight.</summary>
            <exception cref="T:System.InvalidOperationException">When the collection does not belong to a parent entity.-or-When the parent entity is not tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext"/>.-or-When a previous call to <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync"/> is not yet complete.</exception>
            <remarks>This method loads the content of a property represented by this DataServiceCollection.
            If this instance is not associated with any property and entity the method will fail.
            This method uses the event-based async pattern.
            The method returns immediately without waiting for the query to complete. Then it calls the handler of the
            <see cref="E:System.Data.Services.Client.DataServiceCollection`1.LoadCompleted"/> event exactly once on the UI thread. The event will be raised regradless
            if the query succeeded or not.
            This class only support one asynchronous operation in flight.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.LoadNextPartialSetAsync">
            <summary>Loads the next page of data into the collection.Supported only by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>A <see cref="T:System.Boolean"/> value that is true when the <see cref="T:System.Data.Services.Client.DataServiceCollection`1"/> has a continuation token; otherwise false.</returns>
            <remarks>This method is the same as <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync(System.Linq.IQueryable{`0})"/> except that it runs the query as defined
            by the continuation token of this collection.
            The method returns immediately without waiting for the query to complete. Then it calls the handler of the
            <see cref="E:System.Data.Services.Client.DataServiceCollection`1.LoadCompleted"/> event exactly once on the UI thread. The event will be raised regradless
            if the query succeeded or not. Even if the method returns false, the event will be raised (immeditaly)
            This class only support one asynchronous operation in flight.
            If this collection doesn't have a continuation token (this.Continuation == null) then this method
            returns false and does not issue any request.
            If there is a continuation token the method will return true and will start a request to load
            the next partial set based on that continuation token.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.CancelAsyncLoad">
            <summary>Cancels any running LoadAsync operations and calls the LoadCompleted event handler after cancellation.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.Load(`0)">
            <summary>Loads a single entity object into the collection.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <param name="item">Entity object to be added.</param>
            <remarks>
            When tracking is enabled, the behavior of Load would be to attach the entity if it is not already tracked by the context
            associated with the collection. The operation will go deep into the input entity so that all related
            entities are attached to the context if not already present. The <paramref name="item"/> will be
            tracked after Load is done.
            Load method checks for duplication. The collection will ignore any duplicated items been loaded.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.Clear(System.Boolean)">
            <summary>Indicates whether all the items from the collection are removed.</summary>
            <param name="stopTracking">true if all the items from the collection are removed; otherwise, false.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.Detach">
            <summary>Disables the <see cref="T:System.Data.Services.Client.DataServiceContext" /> tracking of all items in the collection.</summary>
            <remarks>
            All the entitities in the root collection and all it's related objects will be untracked at the
            end of this operation.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.InsertItem(System.Int32,`0)">
            <summary>Adds a specified item to the collection at the specified index.</summary>
            <param name="index">Index at which to add the item.</param>
            <param name="item">The item to add.</param>
            <remarks>
            Override to prevent additions to the collection in "deferred tracking" mode, and to verify that the item implements INotifyPropertyChanged.
            Overridding this method will cover items that are added to the collection via Add and Insert.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.ClearItems">
            <summary>
            Called from the ObservableCollection when the DataServiceCollection is cleared. Used to sync hasedItems with the ObservableCollection.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.RemoveItem(System.Int32)">
            <summary>
            Called from the ObservableCollection when an item is removed from the DataServiceCollection. Used to sync hasedItems with the ObservableCollection.
            </summary>
            <param name="index">The index of the item to be removed.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.SetItem(System.Int32,`0)">
            <summary>
            Called from the ObservableCollection when an item at a given index is replaced with another. Used to sync hasedItems with the ObservableCollection.
            </summary>
            <param name="index">Index at which to remove the old item and add the new item.</param>
            <param name="item">The item to be added</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.ValidateIteratorParameter(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            Verifies that input iterator parameter is not null and in case
            of Silverlight, it is not of DataServiceQuery type.
            </summary>
            <param name="items">Input iterator parameter.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.GetContextFromItems(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            Obtain the DataServiceContext from the incoming enumerable
            </summary>
            <param name="items">An IEnumerable that may be a DataServiceQuery or QueryOperationResponse object</param>
            <returns>DataServiceContext instance associated with the input</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.InternalLoadCollection(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            Populate this collection with another collection of items
            </summary>
            <param name="items">The items to populate this collection with</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.StartLoading">
            <summary>
            Prepare the collection for loading. For tracked collections, we enter the attaching state
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.FinishLoading">
            <summary>
            Reset the collection after loading. For tracked collections, we exit the attaching state.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.StartTracking(System.Data.Services.Client.DataServiceContext,System.Collections.Generic.IEnumerable{`0},System.String,System.Func{System.Data.Services.Client.EntityChangedParams,System.Boolean},System.Func{System.Data.Services.Client.EntityCollectionChangedParams,System.Boolean})">
            <summary>Initialize and start tracking an DataServiceCollection</summary>
            <param name="context">The context</param>
            <param name="items">Collection to initialize with</param>
            <param name="entitySet">The entity set of the elements in the collection.</param>
            <param name="entityChanged">delegate that needs to be called when an entity changes.</param>
            <param name="collectionChanged">delegate that needs to be called when an entity collection is changed.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.BeginLoadAsyncOperation(System.Func{System.AsyncCallback,System.IAsyncResult},System.Func{System.IAsyncResult,System.Data.Services.Client.QueryOperationResponse})">
            <summary>Helper method to start a LoadAsync operation.</summary>
            <param name="beginCall">Function which calls the Begin method for the load. It should take <see cref="T:System.AsyncCallback"/>
            parameter which should be used as the callback for the Begin call. It should return <see cref="T:System.IAsyncResult"/>
            of the started asynchronous operation (or throw).</param>
            <param name="endCall">Function which calls the End method for the load. It should take <see cref="T:System.IAsyncResult"/>
            which represents the asynchronous operation in flight. It should return <see cref="T:System.Data.Services.Client.QueryOperationResponse"/>
            with the result of the operation (or throw).</param>
            <remarks>The method takes care of error handling as well as maintaining the <see cref="F:System.Data.Services.Client.DataServiceCollection`1.ongoingAsyncOperation"/>.
            Note that it does not check the <see cref="F:System.Data.Services.Client.DataServiceCollection`1.ongoingAsyncOperation"/> to disallow multiple operations in flight.
            The method makes sure that the <paramref name="endCall"/> will be called from the UI thread. It makes no assumptions
            about the calling thread of this method.
            The method does not process the results of the <paramref name="endCall"/>, it just raises the <see cref="E:System.Data.Services.Client.DataServiceCollection`1.LoadCompleted"/>
            event as appropriate. If there's some processing to be done for the results it should all be done by the
            <paramref name="endCall"/> method before it returns.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceCollection`1.EndLoadAsyncOperation(System.Func{System.IAsyncResult,System.Data.Services.Client.QueryOperationResponse},System.IAsyncResult)">
            <summary>
            Calls the end method for the LoadAsync operation and fires the LoadCompleted event.
            </summary>
            <param name="endCall">End method to complete the asynchronous query execution.</param>
            <param name="asyncResult">IAsyncResult to be passed to <paramref name="endCall"/>.</param>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceCollection`1.LoadCompleted">
            <summary>A completion event for the <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync(System.Linq.IQueryable{`0})"/>, <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync"/>
            and <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadNextPartialSetAsync"/> method.</summary>
            <remarks>This event is raised exactly once for each call to the <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync(System.Linq.IQueryable{`0})"/>,
            <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadAsync"/> or <see cref="M:System.Data.Services.Client.DataServiceCollection`1.LoadNextPartialSetAsync"/> method. It is called both when the operation
            succeeded and/or when it failed.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceCollection`1.Continuation">
            <summary>Gets a continuation object that is used to return the next set of paged results.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that contains the URI to return the next set of paged results.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceCollection`1.Observer">
            <summary>Observer for the collection.</summary>
            <remarks>The setter would get called only for child collections in the graph.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceCollection`1.IsTracking">
            <summary>
            Whether this collection is actively tracking
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.LoadCompletedEventArgs">
            <summary>Used as the <see cref="T:System.EventArgs" /> class for the <see cref="E:System.Data.Services.Client.DataServiceCollection`1.LoadCompleted" /> event.Supported only by the WCF Data Services 5.0 client for Silverlight.</summary>
        </member>
        <member name="F:System.Data.Services.Client.LoadCompletedEventArgs.queryOperationResponse">
            <summary>The <see cref="P:System.Data.Services.Client.LoadCompletedEventArgs.QueryOperationResponse"/> which represents
            the response for the Load operation.</summary>
            <remarks>This field is non-null only when the Load operation was successfull.
            Otherwise it's null.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.LoadCompletedEventArgs.#ctor(System.Data.Services.Client.QueryOperationResponse,System.Exception)">
            <summary>Constructor</summary>
            <param name="queryOperationResponse">The response for the Load operation. null when the operation didn't succeed.</param>
            <param name="error"><see cref="T:System.Exception"/> which represents the error if the Load operation failed. null if the operation
            didn't fail.</param>
            <remarks>This constructor doesn't allow creation of canceled event args.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.LoadCompletedEventArgs.#ctor(System.Data.Services.Client.QueryOperationResponse,System.Exception,System.Boolean)">
            <summary>Constructor</summary>
            <param name="queryOperationResponse">The response for the Load operation. null when the operation didn't succeed.</param>
            <param name="error"><see cref="T:System.Exception"/> which represents the error if the Load operation failed. null if the operation
            didn't fail.</param>
            <param name="cancelled">True, if the LoadAsync operation was cancelled, False otherwise.</param>
            <remarks>This constructor doesn't allow creation of canceled event args.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.LoadCompletedEventArgs.QueryOperationResponse">
            <summary>Gets the response to an asynchronous load operation.Supported only by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> that represents the response to a load operation.</returns>
            <remarks>Accessing this property will throw exception if the Load operation failed
            or it was canceled.</remarks>
        </member>
        <member name="T:System.Data.Services.Common.EntitySetAttribute">
            <summary>Indicates the entity set to which a client data service class belongs.</summary>
            <remarks>
            This attribute is generated only when there is one entity set associated with the type.
            When there are more than one entity set associated with the type, then the entity set
            name can be passed in through the EntitySetNameResolver event.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Common.EntitySetAttribute.entitySet">
            <summary>
            The entity set name.
            </summary>
        </member>
        <member name="M:System.Data.Services.Common.EntitySetAttribute.#ctor(System.String)">
            <summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.EntitySetAttribute" />.</summary>
            <param name="entitySet">The entity set to which the class belongs.</param>
        </member>
        <member name="P:System.Data.Services.Common.EntitySetAttribute.EntitySet">
            <summary>Gets the entity set to which the class belongs.</summary>
            <returns>The entity set as string value. </returns>
        </member>
        <member name="T:System.Data.Services.Common.DataServiceEntityAttribute">
            <summary>Marks a class as an entity type in WCF Data Services.</summary>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceEntityAttribute.#ctor">
            <summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.DataServiceEntityAttribute" /> class.</summary>
        </member>
        <member name="T:System.Data.Services.Common.DataServiceKeyAttribute">
            <summary>Denotes the key property or properties of an entity. </summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceKeyAttribute.keyNames">
            <summary>Name of the properties that form the key.</summary>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceKeyAttribute.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Common.DataServiceKeyAttribute" /> class. </summary>
            <param name="keyName">The string that contains name of the key attribute.</param>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceKeyAttribute.#ctor(System.String[])">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Common.DataServiceKeyAttribute" /> class. </summary>
            <param name="keyNames">An array of string values that contain key attribute names.</param>
        </member>
        <member name="P:System.Data.Services.Common.DataServiceKeyAttribute.KeyNames">
            <summary>Gets the names of key attributes.</summary>
            <returns>String value that contains names of key attributes. </returns>
        </member>
        <member name="T:System.Data.Services.Common.DataServiceProtocolVersion">
            <summary>Represents the versions of the Open Data Protocol (OData) that the data service may support. </summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceProtocolVersion.V1">
            <summary>Version 1 </summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceProtocolVersion.V2">
            <summary>Version 2</summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceProtocolVersion.V3">
            <summary>Version 3</summary>
        </member>
        <member name="T:System.Data.Services.Common.HasStreamAttribute">
            <summary>Indicates that a class that is an entity type has a default binary data stream. </summary>
        </member>
        <member name="T:System.Data.Services.Common.NamedStreamAttribute">
            <summary>Indicates that a class that is an entity type has a related named binary stream.</summary>
        </member>
        <member name="M:System.Data.Services.Common.NamedStreamAttribute.#ctor(System.String)">
            <summary>Creates a new instance of the <see cref="T:System.Data.Services.Common.NamedStreamAttribute" /> class.</summary>
            <param name="name">The name of a binary stream that belongs to the attributed entity.</param>
        </member>
        <member name="P:System.Data.Services.Common.NamedStreamAttribute.Name">
            <summary>The name of a binary stream that belongs to the attributed entity.</summary>
            <returns>The name of the binary stream.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceQueryException">
            <summary>Exception that indicates an error occurred while querying the data service. </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQueryException.response">
            <summary>Actual response object.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class with a system-supplied message that describes the error. </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class with a specified message that describes the error. </summary>
            <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.The string value that the contains error message.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor(System.String,System.Exception)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary>
            <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. The string value that contains the error message.</param>
            <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. The inner exception object.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor(System.String,System.Exception,System.Data.Services.Client.QueryOperationResponse)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> class. </summary>
            <param name="message">The string value that contains the error message.</param>
            <param name="innerException">The inner exception object.</param>
            <param name="response">The <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> object.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQueryException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the DataServiceQueryException class from the
            specified SerializationInfo and StreamingContext instances.
            </summary>
            <param name="info">
            A SerializationInfo containing the information required to serialize
            the new DataServiceQueryException.</param>
            <param name="context">
            A StreamingContext containing the source of the serialized stream
            associated with the new DataServiceQueryException.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQueryException.Response">
            <summary>Gets the <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> that indicates the exception results.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> object that indicates the exception results.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceRequestArgs">
            <summary>Represents additional metadata that is included in a request message to WCF Data Services.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequestArgs.#ctor">
            <summary>Creates a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequestArgs.AcceptContentType">
            <summary>Gets or sets the Accept header of the request message.</summary>
            <returns>The value of the Accept header.</returns>
            <remarks>
            Sets the mime type (ex. image/png) to be used when retrieving the stream.
            Note that no validation is done on the contents of this property.
            It is the responsibility of the user to format it correctly to be used
            as the value of an HTTP Accept header.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequestArgs.ContentType">
            <summary>Gets or sets the Content-Type header of the request message.</summary>
            <returns>The value of the Content-Type header.</returns>
            <remarks>
            Sets the Content-Type header to be used when sending the stream to the server.
            Note that no validation is done on the contents of this property.
            It is the responsibility of the user to format it correctly to be used
            as the value of an HTTP Content-Type header.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequestArgs.Slug">
            <summary>Gets or sets the value of the Slug header of the request message.</summary>
            <returns>A value that is the Slug header of the request. </returns>
            <remarks>
            Sets the Slug header to be used when sending the stream to the server.
            Note that no validation is done on the contents of this property.
            It is the responsibility of the user to format it correctly to be used
            as the value of an HTTP Slug header.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequestArgs.Headers">
            <summary>Gets the headers in the request message.</summary>
            <returns>The headers in the request message.</returns>
            <remarks>
            Dictionary containing all the request headers to be used when retrieving the stream.
            The user should take care so as to not alter an HTTP header which will change
            the meaning of the request.
            No validation is performed on the header names or values.
            This class will not attempt to fix up any of the headers specified and
            will try to use them "as is".
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequestArgs.HeaderCollection">
            <summary>Request header collection.</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceRequestException">
            <summary>Represents the error thrown if the data service returns a response code less than 200 or greater than 299, or the top-level element in the response is &lt;error&gt;. This class cannot be inherited.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceRequestException.response">
            <summary>Actual response object.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class with a system-supplied message that describes the error. </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class with a specified message that describes the error. </summary>
            <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.The error message text.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor(System.String,System.Exception)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary>
            <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param>
            <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor(System.String,System.Exception,System.Data.Services.Client.DataServiceResponse)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestException" /> class. </summary>
            <param name="message">Error message text.</param>
            <param name="innerException">Exception object that contains the inner exception.</param>
            <param name="response"><see cref="T:System.Data.Services.Client.DataServiceResponse" /> object.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequestException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Initializes a new instance of the DataServiceQueryException class from the
            specified SerializationInfo and StreamingContext instances.
            </summary>
            <param name="info">
            A SerializationInfo containing the information required to serialize
            the new DataServiceException.</param>
            <param name="context">
            A StreamingContext containing the source of the serialized stream
            associated with the new DataServiceException.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequestException.Response">
            <summary>Gets the response as a <see cref="T:System.Data.Services.Client.DataServiceResponse" /> object. </summary>
            <returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> object.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceStreamResponse">
            <summary>Represents a response from WCF Data Services that contains binary data as a stream.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamResponse.responseMessage">
            <summary>IODataResponseMessage containing all the response information.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamResponse.headers">
            <summary>Lazy initialized cached response headers.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceStreamResponse.responseStream">
            <summary>
            Response stream. Caching the response stream so that IODataResponseStream.GetStream is only called once.
            This helps us to assert that no one internally calls the GetStream method more than once.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceStreamResponse.#ctor(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>
            Constructor for the response. This method is internal since we don't want users to create instances
            of this class.
            </summary>
            <param name="response">The web response to wrap.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceStreamResponse.Dispose">
            <summary>Releases all resources used by the current instance of the <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> class.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceStreamResponse.CheckDisposed">
            <summary>Checks if the object has already been disposed. If so it throws the ObjectDisposedException.</summary>
            <exception cref="T:System.ObjectDisposedException">If the object has already been disposed.</exception>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamResponse.ContentType">
            <summary>Gets the content type of the response stream.</summary>
            <returns>The content type of the response stream.</returns>
            <remarks>If the Content-Type header was not present in the response this property will return null.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamResponse.ContentDisposition">
            <summary>Gets the Content-Disposition header field for the response stream.</summary>
            <returns>The contents of the Content-Disposition header field.</returns>
            /// <remarks>If the Content-Disposition header was not present in the response this property will return null.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamResponse.Headers">
            <summary>Gets the collection of headers from the response.</summary>
            <returns>The headers collection from the response message as a <see cref="T:System.Collections.Generic.Dictionary`2" /> object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceStreamResponse.Stream">
            <summary>Gets the binary property data from the data service as a binary stream. </summary>
            <returns>The stream that contains the binary property data.</returns>
            <exception cref="T:System.ObjectDisposedException">When the <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> is already disposed.</exception>
            <remarks>
            Returns the stream obtained from the data service. When reading from this stream
            the operations may throw if a network error occurs. This stream is read-only.
             
            Caller must call Dispose/Close on either the returned stream or on the response
            object itself. Otherwise the network connection will be left open and the caller
            might run out of available connections.
            </remarks>
        </member>
        <member name="T:System.Data.Services.Client.DescriptorKind">
            <summary>
            enum to describe the descriptor kind
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DescriptorKind.Entity">
            <summary>Entity Descriptor</summary>
        </member>
        <member name="F:System.Data.Services.Client.DescriptorKind.Link">
            <summary>Link Descriptor</summary>
        </member>
        <member name="F:System.Data.Services.Client.DescriptorKind.NamedStream">
            <summary>Named stream descriptor</summary>
        </member>
        <member name="F:System.Data.Services.Client.DescriptorKind.OperationDescriptor">
            <summary>Service Operation descriptor</summary>
        </member>
        <member name="T:System.Data.Services.Client.LinkDescriptor">
            <summary>
            represents the association between two entities
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.LinkDescriptor.EquivalenceComparer">
            <summary>equivalence comparer</summary>
        </member>
        <member name="F:System.Data.Services.Client.LinkDescriptor.source">
            <summary>source entity</summary>
        </member>
        <member name="F:System.Data.Services.Client.LinkDescriptor.sourceProperty">
            <summary>name of property on source entity that references the target entity</summary>
        </member>
        <member name="F:System.Data.Services.Client.LinkDescriptor.target">
            <summary>target entity</summary>
        </member>
        <member name="M:System.Data.Services.Client.LinkDescriptor.#ctor(System.Object,System.String,System.Object,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Constructor
            </summary>
            <param name="source">Source entity</param>
            <param name="sourceProperty">Navigation property on the source entity</param>
            <param name="target">Target entity</param>
            <param name="model">The client model.</param>
        </member>
        <member name="M:System.Data.Services.Client.LinkDescriptor.#ctor(System.Object,System.String,System.Object,System.Data.Services.Client.EntityStates)">
            <summary>
            Constructor
            </summary>
            <param name="source">Source entity</param>
            <param name="sourceProperty">Navigation property on the source entity</param>
            <param name="target">Target entity</param>
            <param name="state">The link state</param>
        </member>
        <member name="M:System.Data.Services.Client.LinkDescriptor.ClearChanges">
            <summary>
            Clear all the changes associated with this descriptor
            This method is called when the client is done with sending all the pending requests.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.LinkDescriptor.IsEquivalent(System.Object,System.String,System.Object)">
            <summary>
            If the current instance of link descriptor is equivalent to the parameters supplied
            </summary>
            <param name="src">The source entity</param>
            <param name="srcPropName">The source property name</param>
            <param name="targ">The target entity</param>
            <returns>true if equivalent</returns>
        </member>
        <member name="P:System.Data.Services.Client.LinkDescriptor.Target">
            <summary>The source entity in a link returned by a <see cref="T:System.Data.Services.Client.DataServiceResponse" />. </summary>
            <returns><see cref="T:System.Object" />.</returns>
        </member>
        <member name="P:System.Data.Services.Client.LinkDescriptor.Source">
            <summary>A source entity in a link returned by a <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
            <returns><see cref="T:System.Object" />.</returns>
        </member>
        <member name="P:System.Data.Services.Client.LinkDescriptor.SourceProperty">
            <summary>The identifier property of the source entity in a link returned by a <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
            <returns>The string identifier of an identity property in a source entity. </returns>
        </member>
        <member name="P:System.Data.Services.Client.LinkDescriptor.DescriptorKind">
            <summary>this is a link</summary>
        </member>
        <member name="P:System.Data.Services.Client.LinkDescriptor.IsSourcePropertyCollection">
            <summary>is this a collection property or not</summary>
        </member>
        <member name="T:System.Data.Services.Client.LinkDescriptor.Equivalent">
            <summary>equivalence comparer</summary>
        </member>
        <member name="M:System.Data.Services.Client.LinkDescriptor.Equivalent.Equals(System.Data.Services.Client.LinkDescriptor,System.Data.Services.Client.LinkDescriptor)">
            <summary>are two LinkDescriptors equivalent, ignore state</summary>
            <param name="x">link descriptor x</param>
            <param name="y">link descriptor y</param>
            <returns>true if equivalent</returns>
        </member>
        <member name="M:System.Data.Services.Client.LinkDescriptor.Equivalent.GetHashCode(System.Data.Services.Client.LinkDescriptor)">
            <summary>compute hashcode for LinkDescriptor</summary>
            <param name="obj">link descriptor</param>
            <returns>hashcode</returns>
        </member>
        <member name="T:System.Data.Services.Client.ChangeOperationResponse">
            <summary>Response from SaveChanges.</summary>
        </member>
        <member name="F:System.Data.Services.Client.ChangeOperationResponse.descriptor">
            <summary>Descriptor containing the response object.</summary>
        </member>
        <member name="M:System.Data.Services.Client.ChangeOperationResponse.#ctor(System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.Descriptor)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.ChangeOperationResponse" /> class. </summary>
            <param name="headers">HTTP headers</param>
            <param name="descriptor">response object containing information about resources that got changed.</param>
        </member>
        <member name="P:System.Data.Services.Client.ChangeOperationResponse.Descriptor">
            <summary>Gets the <see cref="T:System.Data.Services.Client.EntityDescriptor" /> or <see cref="T:System.Data.Services.Client.LinkDescriptor" /> modified by a change operation.</summary>
            <returns>An <see cref="T:System.Data.Services.Client.EntityDescriptor" /> or <see cref="T:System.Data.Services.Client.LinkDescriptor" /> modified by a change operation. </returns>
        </member>
        <member name="T:System.Data.Services.Client.ClientConvert">
            <summary>
            static utility functions for conversions
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.ClientConvert.ChangeType(System.String,System.Type)">
            <summary>
            convert from string to the appropriate type
            </summary>
            <param name="propertyValue">incoming string value</param>
            <param name="propertyType">type to convert to</param>
            <returns>converted value</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientConvert.TryConvertBinaryToByteArray(System.Object,System.Byte[]@)">
            <summary>
            Tries to converts a binary value to a byte array.
            </summary>
            <param name="binaryValue">The binary value to convert.</param>
            <param name="converted">The equivalent value converted to a byte array.</param>
            <returns>Whether the value was binary.</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientConvert.ToNamedType(System.String,System.Type@)">
            <summary>
            change primtive typeName into non-nullable type
            </summary>
            <param name="typeName">like Edm.String or Edm.Binary</param>
            <param name="type">the mapped output type</param>
            <returns>true if named</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientConvert.ToString(System.Object)">
            <summary>
            Convert from primitive value to an xml payload string.
            NOTE: We need to pay special attention to DateTimes - if the converted value is going to be used as a content of
            atom:updated or atom:published element we have to ensure it contains information about time zone. At the same time we
            must not touch datetime values that in content or are mapped to custom elements.
            </summary>
            <param name="propertyValue">incoming object value</param>
            <returns>converted value</returns>
        </member>
        <member name="M:System.Data.Services.Client.ClientConvert.GetEdmType(System.Type)">
            <summary>type edm type string for content</summary>
            <param name="propertyType">type to analyze</param>
            <returns>edm type string for payload, null for unknown</returns>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientTypeAnnotation">
            <summary>
            Annotates a type on the client.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EdmType">
            <summary>Back reference to the EdmType this annotation is part of.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.ElementTypeName">
            <summary>what is the clr full name using ToString for generic name expansion</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.ElementType">
            <summary>what clr type does this represent</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.model">
            <summary>Storage for the client model.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.isMediaLinkEntry">
            <summary>Set to true if the type is marked as ATOM-style media link entry</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.mediaDataMember">
            <summary>Property that holds data for ATOM-style media link entries</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.metadataVersion">
            <summary>Whether any property (including properties on descendant types) of this type is a collection of primitive or complex types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.epmLazyLoader">
            <summary>object to manage and encapsulate the lazy loading of the EPM data.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.clientPropertyCache">
            <summary>Cached client properties.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.edmPropertyCache">
            <summary>Cached Edm properties</summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.#ctor(Microsoft.Data.Edm.IEdmType,System.Type,System.String,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            discover and prepare properties for usage
            </summary>
            <param name="edmType">Back reference to the EdmType this annotation is part of.</param>
            <param name="type">type being processed</param>
            <param name="qualifiedName">the qualified name of the type being processed</param>
            <param name="model">The client model.</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EnsureEPMLoaded">
            <summary> Ensures that EPM is loaded </summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EdmProperties">
            <summary>
            Returns the list of EdmProperties for this type.
            </summary>
            <returns>Returns the list of EdmProperties for this type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.Properties">
            <summary>Returns the list of properties from this type.</summary>
            <returns>Returns the list of properties from this type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.PropertiesToSerialize">
            <summary>
            Gets the set of properties on this type that should be serialized into insert/update payloads.
            </summary>
            <returns>The properties to serialize.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.GetProperty(System.String,System.Boolean)">
            <summary>
            get property wrapper for a property name, might be method around open types for otherwise unknown properties
            </summary>
            <param name="propertyName">property name</param>
            <param name="ignoreMissingProperties">are missing properties ignored</param>
            <returns>property wrapper</returns>
            <exception cref="T:System.InvalidOperationException">for unknown properties on closed types</exception>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.GetMetadataVersion">
            <summary>
            Checks if any of the properties (including properties of descendant types) is a collection of primitive or complex types.
            </summary>
            <returns>true if any if any of the properties (including properties of descendant types) is a collection of primitive or complex types. Otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.ShouldSerializeProperty(System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Determines whether a given property should be serialized into an insert or update payload.
            </summary>
            <param name="type">The declaring type of the property.</param>
            <param name="property">The property.</param>
            <returns>Whether or not the property should be serialized.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.BuildPropertyCache">
            <summary>
            build the clientPropertyCache from EdmProperties
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.CheckMediaLinkEntry">
            <summary>
            Check if this type represents an ATOM-style media link entry and
            if so mark the ClientType as such
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.SetMediaLinkEntryAnnotation">
            <summary>
            Set the HasStream boolean annotation in the EdmType to true.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.ComputeVersionForPropertyCollection(System.Collections.Generic.IEnumerable{Microsoft.Data.Edm.IEdmProperty},System.Collections.Generic.HashSet{Microsoft.Data.Edm.IEdmType})">
            <summary>
            Computes the metadata version of the property.
            </summary>
            <param name="propertyCollection">List of properties for which metadata version needs to be computed.</param>
            <param name="visitedComplexTypes">List of complex type already visited.</param>
            <returns>the metadata version of the property collection.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.DiscoverEdmProperties">
            <summary>
            Discovers and returns edm properties for this type.
            </summary>
            <returns>Edm properties on this type.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.IsEntityType">
            <summary>if true then EntityType else if !KnownType then ComplexType else PrimitiveType</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.MediaDataMember">
            <summary>Property that holds data for ATOM-style media link entries</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.IsMediaLinkEntry">
            <summary>Returns true if the type is marked as ATOM-style media link entry</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmTargetTree">
            <summary>
            Target tree for <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute"/>s on this type
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.HasEntityPropertyMappings">
            <summary>Are there any entity property mappings on this type</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmMinimumDataServiceProtocolVersion">
            <summary>The minimum DSVP required for EPM mappings</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EdmTypeReference">
            <summary> Gets the EdmTypeReference for the client Type annotation. </summary>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader">
            <summary>
            Class to encpsulate the lazy loading logic for EPM data
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.epmSourceTree">
            <summary>Souce Epm mappings</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.epmTargetTree">
            <summary>Target Epm mappings</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.epmDataLock">
            <summary>object to lock on when building the epm info</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.clientTypeAnnotation">
            <summary>the current client annotation that the mappings are for</summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.#ctor(System.Data.Services.Client.Metadata.ClientTypeAnnotation)">
            <summary>
            Initializes a new instance of the <see cref="T:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader"/> class.
            </summary>
            <param name="clientTypeAnnotation">The client type annotation.</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.EnsureEPMLoaded">
            <summary>
            Ensures that the EPM data is loaded.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.BuildEpmInfo(System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Data.Services.Client.Serializers.EpmSourceTree)">
            <summary>
            By going over EntityPropertyMappingInfoAttribute(s) defined on the ElementType
            builds the corresponding EntityPropertyMappingInfo
            </summary>
            <param name="clientTypeAnnotation">The ClientTypeAnnotation to refer to</param>
            <param name="sourceTree">The source tree to populate.</param>
            <remarks>This method should be called after all properties are set on the edm type.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.BuildEpmInfo(System.Type,System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Data.Services.Client.Serializers.EpmSourceTree)">
            <summary>
            By going over EntityPropertyMappingInfoAttribute(s) defined on <paramref name="type"/>
            builds the corresponding EntityPropertyMappingInfo
            </summary>
            <param name="type">Type being looked at</param>
            <param name="clientTypeAnnotation">The ClientTypeAnnotation to refer to</param>
            <param name="sourceTree">The source tree to populate.</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.BuildEpmInfo(System.Data.Services.Common.EntityPropertyMappingAttribute,System.Type,System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Data.Services.Client.Serializers.EpmSourceTree)">
            <summary>
            Builds the EntityPropertyMappingInfo corresponding to an EntityPropertyMappingAttribute, also builds the delegate to
            be invoked in order to retrieve the property provided in the <paramref name="epmAttr"/>
            </summary>
            <param name="epmAttr">Source EntityPropertyMappingAttribute</param>
            <param name="definingType">ResourceType on which to look for the property</param>
            <param name="clientTypeAnnotation">The ClientTypeAnnotation to refer to</param>
            <param name="sourceTree">The source tree to populate.</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.InitializeAndBuildTree">
            <summary>
            Initializes the epm fields and builds the information into the fields
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.EpmTargetTree">
            <summary>
            Target tree for <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute"/>s on this type
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.EpmSourceTree">
            <summary>
            Source tree for <see cref="T:System.Data.Services.Common.EntityPropertyMappingAttribute"/>s on this type
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientTypeAnnotation.EpmLazyLoader.EpmNeedsInitializing">
            <summary>
            Determines if the Epm fields need initializing
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientException">
            <summary>
            The exception that is thrown when the server returns an error.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceClientException.state">
            <summary>
            Contains the state for this exception.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientException.#ctor">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class with a system-supplied message that describes the error. </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class with a specified message that describes the error. </summary>
            <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String,System.Exception)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception. </summary>
            <param name="message">The message that describes the exception. The caller of this constructor is required to ensure that this string has been localized for the current system culture. </param>
            <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException" /> parameter is not null, the current exception is raised in a catch block that handles the inner exception. </param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String,System.Int32)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class. </summary>
            <param name="message">The string value that contains the error message.</param>
            <param name="statusCode">The integer value that contains status code.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientException.#ctor(System.String,System.Exception,System.Int32)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceClientException" /> class. </summary>
            <param name="message">The string value that contains the error message.</param>
            <param name="innerException">The System.Exception object that contains the inner exception.</param>
            <param name="statusCode">The integer value that contains status code.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientException.StatusCode">
            <summary>Gets the HTTP error status code returned after <see cref="T:System.Data.Services.Client.DataServiceClientException" />.</summary>
            <returns>An integer value that represents the exception.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceClientException.DataServiceClientExceptionSerializationState">
            <summary>
            Contains the state of the exception, used for serialization in security transparent code.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceClientException.DataServiceClientExceptionSerializationState.System#Runtime#Serialization#ISafeSerializationData#CompleteDeserialization(System.Object)">
            <summary>
            Called when deserialization of the exception is complete.
            </summary>
            <param name="deserialized">The deserialized exception.</param>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceClientException.DataServiceClientExceptionSerializationState.StatusCode">
            <summary>
            Gets or sets the status code as returned by the server.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceQuery">
            <summary>non-generic placeholder for generic implementation</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceRequest">
            <summary>non-generic placeholder for generic implementation</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.#ctor">
            <summary>internal constructor so that only our assembly can provide an implementation</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.Materialize(System.Data.Services.Client.ResponseInfo,System.Data.Services.Client.QueryComponents,System.Data.Services.Client.ProjectionPlan,System.String,Microsoft.Data.OData.IODataResponseMessage,Microsoft.Data.OData.ODataPayloadKind)">
            <summary>
            get an enumerable materializes the objects the response
            </summary>
            <param name="responseInfo">context</param>
            <param name="queryComponents">query components</param>
            <param name="plan">Projection plan (if compiled in an earlier query).</param>
            <param name="contentType">contentType</param>
            <param name="message">the message</param>
            <param name="expectedPayloadKind">expected payload kind.</param>
            <returns>atom materializer</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.GetInstance(System.Type,System.Uri)">
            <summary>
            Creates a instance of strongly typed DataServiceRequest with the given element type.
            </summary>
            <param name="elementType">element type for the DataServiceRequest.</param>
            <param name="requestUri">constructor parameter.</param>
            <returns>returns the strongly typed DataServiceRequest instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.EndExecute``1(System.Object,System.Data.Services.Client.DataServiceContext,System.String,System.IAsyncResult)">
            <summary>
            Ends an asynchronous request to an Internet resource.
            </summary>
            <typeparam name="TElement">Element type of the result.</typeparam>
            <param name="source">Source object of async request.</param>
            <param name="context">The data service context.</param>
            <param name="method">async method name.</param>
            <param name="asyncResult">The asyncResult being ended.</param>
            <returns>The response - result of the request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.QueryComponents(System.Data.Services.Client.ClientEdmModel)">
            <summary>The QueryComponents associated with this request</summary>
            <param name="model">The client model.</param>
            <returns>instance of query components</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.Execute``1(System.Data.Services.Client.DataServiceContext,System.Data.Services.Client.QueryComponents)">
            <summary>
            execute uri and materialize result
            </summary>
            <typeparam name="TElement">element type</typeparam>
            <param name="context">context</param>
            <param name="queryComponents">query components for request to execute</param>
            <returns>enumerable of results</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.GetQuerySetCount(System.Data.Services.Client.DataServiceContext)">
            <summary>
            Synchronizely get the query set count from the server by executing the $count=value query
            </summary>
            <param name="context">The context</param>
            <returns>The server side count of the query set</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.BeginExecute(System.Object,System.Data.Services.Client.DataServiceContext,System.AsyncCallback,System.Object,System.String)">
            <summary>
            Begins an asynchronous request to an Internet resource.
            </summary>
            <param name="source">source of execute (DataServiceQuery or DataServiceContext</param>
            <param name="context">context</param>
            <param name="callback">The AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <param name="method">async method name.</param>
            <returns>An IAsyncResult that references the asynchronous request for a response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest.CreateExecuteResult(System.Object,System.Data.Services.Client.DataServiceContext,System.AsyncCallback,System.Object,System.String)">
            <summary>
            Creates the result object for the specified query parameters.
            </summary>
            <param name="source">The source object for the request.</param>
            <param name="context">The data service context.</param>
            <param name="callback">The AsyncCallback delegate.</param>
            <param name="state">The state object for the callback.</param>
            <param name="method">async method name at the source.</param>
            <returns>Result representing the create request. The request has not been initiated yet.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequest.ElementType">
            <summary>Gets the type of object submitted as a batch to the data service.</summary>
            <returns>Type object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequest.RequestUri">
            <summary>Gets the URI of the request object submitted to a data service.</summary>
            <returns>URI of the request object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequest.Plan">
            <summary>The ProjectionPlan for the request, if precompiled in a previous page; null otherwise.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequest.PayloadKind">
            <summary>Gets or sets the payload kind for this request.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.#ctor">
            <summary>internal constructor so that only our assembly can provide an implementation</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.System#Collections#IEnumerable#GetEnumerator">
            <summary>Gets the <see cref="T:System.Collections.IEnumerator" /> object that can be used to iterate through the collection returned by the query.</summary>
            <returns>An enumerator over the query results.</returns>
            <remarks>Expect derived class to override this with an explict interface implementation</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.Execute">
            <summary>Executes the query against the data service.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the results of the query operation.</returns>
            <exception cref="T:System.Data.Services.Client.DataServiceQueryException">When the data service returns an HTTP 404: Resource Not Found error.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.BeginExecute(System.AsyncCallback,System.Object)">
            <summary>Asynchronously sends a request to execute the data service query.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation.</returns>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.EndExecute(System.IAsyncResult)">
            <summary>Called to complete the asynchronous operation of executing a data service query.</summary>
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the results of the query operation.</returns>
            <param name="asyncResult">The result from the <see cref="M:System.Data.Services.Client.DataServiceQuery.BeginExecute(System.AsyncCallback,System.Object)" /> operation that contains the query results.</param>
            <exception cref="T:System.Data.Services.Client.DataServiceQueryException">When the data service returns an HTTP 404: Resource Not Found error.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.ExecuteInternal">
            Synchronous methods not available
            <summary>
            Returns an IEnumerable from an Internet resource.
            </summary>
            <returns>An IEnumerable that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.BeginExecuteInternal(System.AsyncCallback,System.Object)">
            <summary>
            Begins an asynchronous request to an Internet resource.
            </summary>
            <param name="callback">The AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An IAsyncResult that references the asynchronous request for a response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery.EndExecuteInternal(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request to an Internet resource.
            </summary>
            <param name="asyncResult">The pending request for a response. </param>
            <returns>An IEnumerable that contains the response from the Internet resource.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery.Expression">
            <summary>Represents an expression that contains the query to the data service.</summary>
            <returns>An <see cref="T:System.Linq.Expressions.Expression" /> object that represents the query.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery.Provider">
            <summary>Represents the query provider instance.</summary>
            <returns>An <see cref="T:System.Linq.IQueryProvider" /> representing the data source provider.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceRequest`1">
            <summary>
            Holds a Uri and type for the request.
            </summary>
            <typeparam name="TElement">The type to construct for the request results</typeparam>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceRequest`1.plan">
            <summary>The ProjectionPlan for the request (if precompiled in a previous page).</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceRequest`1.requestUri">
            <summary>Request uri for the current request.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceRequest`1.queryComponents">
            <summary>The QueryComponents for the request</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest`1.#ctor(System.Uri)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceRequest`1" /> class. </summary>
            <param name="requestUri">The URI object that contains the request string.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest`1.#ctor(System.Uri,System.Data.Services.Client.QueryComponents,System.Data.Services.Client.ProjectionPlan)">
            <summary>Create a request for a specific Uri</summary>
            <param name="requestUri">The URI for the request.</param>
            <param name="queryComponents">The query components for the request</param>
            <param name="plan">Projection plan to reuse (possibly null).</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest`1.ToString">
            <summary>Represents the URI of the query to the data service. </summary>
            <returns>The requested URI as a <see cref="T:System.String" /> value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceRequest`1.QueryComponents(System.Data.Services.Client.ClientEdmModel)">
            <summary>The QueryComponents associated with this request</summary>
            <param name="model">The client model.</param>
            <returns>an instance of QueryComponents.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequest`1.ElementType">
            <summary>Gets the type of the object used to create the <see cref="T:System.Data.Services.Client.DataServiceRequest`1"/> instance.</summary>
            <returns>A <see cref="T:System.Type"/> value that indicates the type of data returned.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequest`1.RequestUri">
            <summary>Gets the URI object that contains the request string. </summary>
            <returns>A <see cref="T:System.Uri"/> object that contains the request string.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceRequest`1.Plan">
            <summary>The ProjectionPlan for the request, if precompiled in a previous page; null otherwise.</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceResponse">
            <summary>
            Data service response to ExecuteBatch &amp; SaveChanges
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceResponse.headers">
            <summary>Http headers of the response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceResponse.statusCode">
            <summary>Http status code of the response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceResponse.response">
            <summary>responses</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceResponse.batchResponse">
            <summary>true if this is a batch response, otherwise false.</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceResponse.#ctor(System.Data.Services.Client.HeaderCollection,System.Int32,System.Collections.Generic.IEnumerable{System.Data.Services.Client.OperationResponse},System.Boolean)">
            <summary>
            constructor
            </summary>
            <param name="headers">HTTP headers</param>
            <param name="statusCode">HTTP status code</param>
            <param name="response">list of responses</param>
            <param name="batchResponse">true if this represents a batch response, otherwise false.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceResponse.GetEnumerator">
            <summary>Gets an enumerator that enables retrieval of responses to operations being tracked by <see cref="T:System.Data.Services.Client.OperationResponse" /> objects within the <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
            <returns>An enumerator over the response received from the service.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceResponse.System#Collections#IEnumerable#GetEnumerator">
            <summary>Gets an enumerator that enables retrieval of responses to operations being tracked by <see cref="T:System.Data.Services.Client.OperationResponse" /> objects within the <see cref="T:System.Data.Services.Client.DataServiceResponse" />.</summary>
            <returns>An enumerator over the response received from the service.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceResponse.BatchHeaders">
            <summary>The headers from an HTTP response associated with a batch request.</summary>
            <returns>An <see cref="T:System.Collections.IDictionary" /> object containing the name-value pairs of an HTTP response.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceResponse.BatchStatusCode">
            <summary>The status code from an HTTP response associated with a batch request.</summary>
            <returns>An integer based on status codes defined in Hypertext Transfer Protocol.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceResponse.IsBatchResponse">
            <summary>Gets a Boolean value that indicates whether the response contains multiple results.</summary>
            <returns>A Boolean value that indicates whether the response contains multiple results.</returns>
        </member>
        <member name="T:System.Data.Services.Client.QueryOperationResponse`1">
            <summary>
            Response to a batched query or Execute call.
            </summary>
            <typeparam name="T">The type to construct for the request results</typeparam>
        </member>
        <member name="T:System.Data.Services.Client.QueryOperationResponse">
            <summary>
            Response to a batched query.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryOperationResponse.query">
            <summary>Original query</summary>
        </member>
        <member name="F:System.Data.Services.Client.QueryOperationResponse.results">
            <summary>Enumerable of objects in query</summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse.#ctor(System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.DataServiceRequest,System.Data.Services.Client.MaterializeAtom)">
            <summary>
            constructor
            </summary>
            <param name="headers">HTTP headers</param>
            <param name="query">original query</param>
            <param name="results">retrieved objects</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse.GetEnumerator">
            <summary>Executes the <see cref="T:System.Data.Services.Client.DataServiceQuery" /> and returns <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> items. </summary>
            <returns>The enumerator to a collection of <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> items.</returns>
            <remarks>In the case of Collection(primitive) or Collection(complex), the entire collection is
            materialized when this is called.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse.GetContinuation">
            <summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation" /> object containing the URI that is used to retrieve the next results page.</summary>
            <returns>An object containing the URI that is used to return the next results page.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse.GetContinuation(System.Collections.IEnumerable)">
            <summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation" /> object containing the URI that is used to retrieve the next page of related entities in the specified collection.</summary>
            <returns>A continuation object that points to the next page for the collection.</returns>
            <param name="collection">The collection of related objects being loaded.</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse.GetContinuation``1(System.Collections.Generic.IEnumerable{``0})">
            <summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that contains the URI that is used to retrieve the next page of related entities in the specified collection.</summary>
            <returns>A continuation object that points to the next page for the collection.</returns>
            <param name="collection">The collection of related objects being loaded.</param>
            <typeparam name="T">The type of the items in the collection.</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse.GetInstance(System.Type,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.DataServiceRequest,System.Data.Services.Client.MaterializeAtom)">
            <summary>
            Creates a generic instance of the QueryOperationResponse and return it
            </summary>
            <param name="elementType">generic type for the QueryOperationResponse.</param>
            <param name="headers">constructor parameter1</param>
            <param name="query">constructor parameter2</param>
            <param name="results">constructor parameter3</param>
            <returns>returns a new strongly typed instance of QueryOperationResponse.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse.GetEnumeratorHelper``1(System.Func{``0})">
            <summary>Gets the enumeration helper for the <see cref="T:System.Data.Services.Client.QueryOperationResponse" />.</summary>
            <param name="getEnumerator">The enumerator.</param>
            <typeparam name="T">The generic type.</typeparam>
            <returns>An enumerator to enumerator through the results.</returns>
        </member>
        <member name="P:System.Data.Services.Client.QueryOperationResponse.Query">
            <summary>Gets the <see cref="T:System.Data.Services.Client.DataServiceQuery" /> that generates the <see cref="T:System.Data.Services.Client.QueryOperationResponse" /> items. </summary>
            <returns>A <see cref="T:System.Data.Services.Client.DataServiceQuery" /> object.</returns>
        </member>
        <member name="P:System.Data.Services.Client.QueryOperationResponse.TotalCount">
            <summary>Gets the server result set count value from a query, if the query has requested the value.</summary>
            <returns>The return value can be either a zero or positive value equal to the number of entities in the set on the server.</returns>
            <exception cref="T:System.InvalidOperationException">Thrown when the count tag is not found in the response stream.</exception>
        </member>
        <member name="P:System.Data.Services.Client.QueryOperationResponse.Results">
            <summary>get a non-null enumerable of the result</summary>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse`1.#ctor(System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.DataServiceRequest,System.Data.Services.Client.MaterializeAtom)">
            <summary>
            constructor
            </summary>
            <param name="headers">HTTP headers</param>
            <param name="query">original query</param>
            <param name="results">retrieved objects</param>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse`1.GetContinuation">
            <summary>Gets a <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that contains the URI that is used to retrieve the next results page.</summary>
            <returns>An object that contains the URI that is used to return the next results page.</returns>
        </member>
        <member name="M:System.Data.Services.Client.QueryOperationResponse`1.GetEnumerator">
            <summary>Executes the <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> and gets <see cref="T:System.Data.Services.Client.QueryOperationResponse`1" /> items.</summary>
            <returns>An enumerator to a collection of <see cref="T:System.Data.Services.Client.QueryOperationResponse`1" /> items.</returns>
            <remarks>In the case of Collection(primitive) or Collection(complex), the entire collection is
            materialized when this is called.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.QueryOperationResponse`1.TotalCount">
            <summary>The server result set count value from a query, if the query has requested the value.</summary>
            <returns>The return value can be either zero or a positive value equal to the number of entities in the set on the server.</returns>
        </member>
        <member name="T:System.Data.Services.Client.ReadingWritingEntityEventArgs">
            <summary>
            Event args for the event fired during reading or writing of
            an entity serialization/deserialization
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.ReadingWritingEntityEventArgs.entity">
            <summary>The entity being (de)serialized</summary>
        </member>
        <member name="F:System.Data.Services.Client.ReadingWritingEntityEventArgs.data">
            <summary>The ATOM entry data to/from the network</summary>
        </member>
        <member name="F:System.Data.Services.Client.ReadingWritingEntityEventArgs.baseUri">
            <summary>The xml base of the feed or entry containing the current ATOM entry</summary>
        </member>
        <member name="M:System.Data.Services.Client.ReadingWritingEntityEventArgs.#ctor(System.Object,System.Xml.Linq.XElement,System.Uri)">
            <summary>
            Constructor
            </summary>
            <param name="entity">The entity being (de)serialized</param>
            <param name="data">The ATOM entry data to/from the network</param>
            <param name="baseUri">The xml base of the feed or entry containing the current ATOM entry</param>
        </member>
        <member name="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Entity">
            <summary>Gets the object representation of data returned from the <see cref="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Data" /> property. </summary>
            <returns><see cref="T:System.Object" /> representation of the <see cref="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Data" /> property.</returns>
        </member>
        <member name="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.Data">
            <summary>Gets an entry or feed data represented as an <see cref="T:System.Xml.Linq.XElement" />.</summary>
            <returns>
              <see cref="T:System.Xml.Linq.XElement" />
            </returns>
        </member>
        <member name="P:System.Data.Services.Client.ReadingWritingEntityEventArgs.BaseUri">
            <summary>Gets the base URI base of the entry or feed.</summary>
            <returns>Returns <see cref="T:System.Uri" />.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Error">
            <summary>
               Strongly-typed and parameterized exception factory.
            </summary>
            <summary>
               Strongly-typed and parameterized exception factory.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Error.Argument(System.String,System.String)">
            <summary>
            create and trace new ArgumentException
            </summary>
            <param name="message">exception message</param>
            <param name="parameterName">parameter name in error</param>
            <returns>ArgumentException</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.InvalidOperation(System.String)">
            <summary>
            create and trace new InvalidOperationException
            </summary>
            <param name="message">exception message</param>
            <returns>InvalidOperationException</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.InvalidOperation(System.String,System.Exception)">
            <summary>
            create and trace new InvalidOperationException
            </summary>
            <param name="message">exception message</param>
            <param name="innerException">innerException</param>
            <returns>InvalidOperationException</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.NotSupported(System.String)">
            <summary>
            Create and trace a NotSupportedException with a message
            </summary>
            <param name="message">Message for the exception</param>
            <returns>NotSupportedException</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.ThrowObjectDisposed(System.Type)">
            <summary>
            create and throw a ThrowObjectDisposed with a type name
            </summary>
            <param name="type">type being thrown on</param>
        </member>
        <member name="M:System.Data.Services.Client.Error.HttpHeaderFailure(System.Int32,System.String)">
            <summary>
            create and trace a
            </summary>
            <param name="errorCode">errorCode</param>
            <param name="message">message</param>
            <returns>InvalidOperationException</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.MethodNotSupported(System.Linq.Expressions.MethodCallExpression)">
            <summary>method not supported</summary>
            <param name="m">method</param>
            <returns>exception to throw</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.ThrowBatchUnexpectedContent(System.Data.Services.Client.InternalError)">
            <summary>throw an exception because unexpected batch content was encounted</summary>
            <param name="value">internal error</param>
        </member>
        <member name="M:System.Data.Services.Client.Error.ThrowBatchExpectedResponse(System.Data.Services.Client.InternalError)">
            <summary>throw an exception because expected batch content was not encountered</summary>
            <param name="value">internal error</param>
        </member>
        <member name="M:System.Data.Services.Client.Error.InternalError(System.Data.Services.Client.InternalError)">
            <summary>unexpected xml when reading web responses</summary>
            <param name="value">internal error</param>
            <returns>exception to throw</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.ThrowInternalError(System.Data.Services.Client.InternalError)">
            <summary>throw exception for unexpected xml when reading web responses</summary>
            <param name="value">internal error</param>
        </member>
        <member name="M:System.Data.Services.Client.Error.Trace``1(``0)">
            <summary>
            Trace the exception
            </summary>
            <typeparam name="T">type of the exception</typeparam>
            <param name="exception">exception object to trace</param>
            <returns>the exception parameter</returns>
        </member>
        <member name="M:System.Data.Services.Client.Error.ArgumentNull(System.String)">
            <summary>
            The exception that is thrown when a null reference (Nothing in Visual Basic) is passed to a method that does not accept it as a valid argument.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Error.ArgumentOutOfRange(System.String)">
            <summary>
            The exception that is thrown when the value of an argument is outside the allowable range of values as defined by the invoked method.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Error.NotImplemented">
            <summary>
            The exception that is thrown when the author has yet to implement the logic at this point in the program. This can act as an exception based TODO tag.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Error.NotSupported">
            <summary>
            The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.InternalError">
            <summary>unique numbers for repeated error messages for unlikely, unactionable exceptions</summary>
        </member>
        <member name="T:System.Data.Services.Client.MaterializeAtom">
            <summary>
            Use this class to materialize objects from an application/atom+xml stream.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.responseInfo">
            <summary>Backreference to the context to allow type resolution.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.elementType">
            <summary>base type of the object to create from the stream.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.expectingPrimitiveValue">
            <summary>when materializing a known type (like string)</summary>
            <remarks>&lt;property&gt; text-value &lt;/property&gt;</remarks>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.materializer">
            <summary>Materializer from which instances are read.</summary>
            <remarks>
            The log for the materializer stores all changes for the
            associated data context.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.current">
            <summary>untyped current object</summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.calledGetEnumerator">
            <summary>has GetEnumerator been called?</summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.moved">
            <summary>Whether anything has been read.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.responseMessage">
            <summary>
            The ODataResponseMessage to dispose when we are done.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.writer">
            <summary>
            output writer, set using reflection
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.#ctor(System.Data.Services.Client.ResponseInfo,System.Data.Services.Client.QueryComponents,System.Data.Services.Client.ProjectionPlan,Microsoft.Data.OData.IODataResponseMessage,Microsoft.Data.OData.ODataPayloadKind)">
            <summary>
            constructor
            </summary>
            <param name="responseInfo">originating context</param>
            <param name="queryComponents">Query components (projection, expected type)</param>
            <param name="plan">Projection plan (if compiled in an earlier query).</param>
            <param name="responseMessage">responseMessage</param>
            <param name="payloadKind">The kind of the payload to materialize.</param>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.#ctor(System.Data.Services.Client.ResponseInfo,System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataEntry},System.Type,Microsoft.Data.OData.ODataFormat)">
            <summary>
            constructor
            </summary>
            <param name="responseInfo">originating context</param>
            <param name="entries">entries that needs to be materialized.</param>
            <param name="elementType">result type.</param>
            <param name="format">The format of the response being materialized from.</param>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.#ctor">
            <summary>
            Private internal constructor used for creating empty wrapper.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.Dispose">
            <summary>
            dispose
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.GetEnumerator">
            <summary>
            as IEnumerable
            </summary>
            <returns>this</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.GetTypeForMaterializer(System.Boolean,System.Type,System.Data.Services.Client.ClientEdmModel,System.Type@)">
            <summary>
            Gets the type that of the instances that will be returned by materializer.
            </summary>
            <param name="expectingPrimitiveValue">Whether the expected is a primitive type.</param>
            <param name="elementType">Actual type on the client.</param>
            <param name="model">The client model used.</param>
            <param name="implementationType">The actual type that implements ICollection&lt;&gt;</param>
            <returns>Type of the instances that will be returned by materializer.</returns>
            <remarks>
            For collection navigation properties (i.e. ICollection&lt;T&gt; where T is an entity the method returns T. Materializer will
            return single entity each time MoveNext() is called. However for collection properties we need the whole property instead of just a
            single collection item.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.MoveNext">
            <summary>
            Creates the next object from the stream.
            </summary>
            <returns>false if stream is finished</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.MoveNextInternal">
            <summary>
            Creates the next object from the stream.
            </summary>
            <returns>false if stream is finished</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.System#Collections#IEnumerator#Reset">
            <summary>
            Not supported.
            </summary>
            <exception cref="T:System.NotSupportedException">Always thrown</exception>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.CreateWrapper(System.Data.Services.Client.DataServiceContext,System.Collections.IEnumerable)">
            <summary>
             Creates materializer for results
            </summary>
            <param name="context">Context of expression to analyze.</param>
            <param name="results">the results to wrap</param>
            <returns>a new materializer</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.CreateWrapper(System.Data.Services.Client.DataServiceContext,System.Collections.IEnumerable,System.Data.Services.Client.DataServiceQueryContinuation)">
            <summary>Creates a materializer for partial result sets.</summary>
            <param name="context">Context of expression to analyze.</param>
            <param name="results">The current page of results</param>
            <param name="continuation">The continuation for the results.</param>
            <returns>A new materializer.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.SetInsertingObject(System.Object)">
            <summary>set the inserted object expected in the response</summary>
            <param name="addedObject">object being inserted that the response is looking for</param>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.CountValue">
            <summary>
            The count tag's value, if requested
            </summary>
            <returns>The count value returned from the server</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.GetContinuation(System.Collections.IEnumerable)">
            <summary>
            Returns the next link URI for the collection key
            </summary>
            <param name="key">The collection for which the Uri is returned, or null, if the top level link is to be returned</param>
            <returns>An Uri pointing to the next page for the collection</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.CheckGetEnumerator">
            <summary>verify the GetEnumerator can only be called once</summary>
        </member>
        <member name="P:System.Data.Services.Client.MaterializeAtom.Current">
            <summary>Loosely typed current object property.</summary>
            <remarks>
            For collection properties this property will be of AtomContentProperties to allow further materialization processing.
            Otherwise the value should be of the right type, as the materializer takes the expected type into account.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.MaterializeAtom.EmptyResults">
            <summary>
            A materializer for empty results
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.MaterializeAtom.IsCountable">
            <summary>
            Returns true if the underlying object used for counting is available
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.MaterializeAtom.Context">
            <summary>
            The data service context object this materializer belongs to
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.MaterializeAtom.ResultsWrapper">
            <summary>
            Private type to wrap partial (paged) results and make it look like standard materialized results.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.ResultsWrapper.results">
            <summary> The results to wrap </summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.ResultsWrapper.continuation">
            <summary>A continuation to the next page of results.</summary>
        </member>
        <member name="F:System.Data.Services.Client.MaterializeAtom.ResultsWrapper.context">
            <summary>The data service context this result belongs to</summary>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.ResultsWrapper.#ctor(System.Data.Services.Client.DataServiceContext,System.Collections.IEnumerable,System.Data.Services.Client.DataServiceQueryContinuation)">
            <summary>
            Creates a wrapper for raw results
            </summary>
            <param name="context">Context of expression to analyze.</param>
            <param name="results">the results to wrap</param>
            <param name="continuation">The continuation for this query.</param>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.ResultsWrapper.GetContinuation(System.Collections.IEnumerable)">
            <summary>
            Get the next link to the result set
            </summary>
            <param name="key">When equals to null, returns the next link associated with this collection. Otherwise throws InvalidOperationException.</param>
            <returns>The continuation for this query.</returns>
        </member>
        <member name="M:System.Data.Services.Client.MaterializeAtom.ResultsWrapper.GetEnumerator">
            <summary>
            Gets Enumerator for wrapped results.
            </summary>
            <returns>IEnumerator for results</returns>
        </member>
        <member name="P:System.Data.Services.Client.MaterializeAtom.ResultsWrapper.Context">
            <summary>
            The data service context this result belongs to
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.MaterializerEntry">
            <summary>
            Materializer state for a given ODataEntry
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.entry">
            <summary>The entry.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.entityDescriptor">
            <summary>entity descriptor object which keeps track of the entity state and other entity specific information.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.isAtomOrTracking">
            <summary>True if the context format is Atom or if the MergeOption is anything other than NoTracking.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.flags">
            <summary>Entry flags.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.navigationLinks">
            <summary>List of navigation links for this entry.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.#ctor">
            <summary>
            Creates a new instance of MaterializerEntry.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.#ctor(Microsoft.Data.OData.ODataEntry,Microsoft.Data.OData.ODataFormat,System.Boolean,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Creates a new instance of MaterializerEntry.
            </summary>
            <param name="entry">The entry.</param>
            <param name="format">The format the entry was read in.</param>
            <param name="isTracking">True if the contents of the entry will be tracked in the context, otherwise False.</param>
            <param name="model">The client model.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.#ctor(System.Data.Services.Client.EntityDescriptor,Microsoft.Data.OData.ODataFormat,System.Boolean)">
            <summary>
            Creates a new instance of MaterializerEntry using the given entity descriptor for LoadProperty.
            </summary>
            <param name="entityDescriptor">Entity descriptor.</param>
            <param name="format">OData Format.</param>
            <param name="isTracking">Whether this entity is being tracked.</param>
            <remarks>Use this constructor only for LoadProperty scenario.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.CreateEmpty">
            <summary>
            Creates an empty entry.
            </summary>
            <returns>An empty entry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.CreateEntry(Microsoft.Data.OData.ODataEntry,Microsoft.Data.OData.ODataFormat,System.Boolean,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Creates the materializer entry.
            </summary>
            <param name="entry">The entry.</param>
            <param name="format">The format the entry was read in.</param>
            <param name="isTracking">True if the contents of the entry will be tracked in the context, otherwise False.</param>
            <param name="model">The client model.</param>
            <returns>A new materializer entry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.CreateEntryForLoadProperty(System.Data.Services.Client.EntityDescriptor,Microsoft.Data.OData.ODataFormat,System.Boolean)">
            <summary>
            Creates the materializer entry for LoadProperty scenario.
            </summary>
            <param name="descriptor">The entity descriptor.</param>
            <param name="format">The format the entry was read in.</param>
            <param name="isTracking">True if the contents of the entry will be tracked in the context, otherwise False.</param>
            <returns>A new materializer entry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.GetEntry(Microsoft.Data.OData.ODataEntry)">
            <summary>
            Gets an entry for a given ODataEntry.
            </summary>
            <param name="entry">The ODataEntry.</param>
            <returns>The materializer entry</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.AddNavigationLink(Microsoft.Data.OData.ODataNavigationLink)">
            <summary>
            Adds a navigation link.
            </summary>
            <param name="link">The link.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.UpdateEntityDescriptor">
            <summary>
            Updates the entity descriptor.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.GetFlagValue(System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags)">
            <summary>Gets the value for a masked item.</summary>
            <param name="mask">Mask value.</param>
            <returns>true if the flag is set; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerEntry.SetFlagValue(System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags,System.Boolean)">
            <summary>Sets the value for a masked item.</summary>
            <param name="mask">Mask value.</param>
            <param name="value">Value to set</param>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.Entry">
            <summary>
            Gets the entry.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.IsAtomOrTracking">
            <summary>
            True if the context format is Atom or if the context's MergeOption is anything other than NoTracking.
            This is used to avoid building URI metadata information that is not needed outside of the context, such
            as odata.id and odata.editlink. Since this information is always available in the payload with Atom, for
            backward compatibility we continue using it as we always have, even for NoTracking cases.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.Id">
            <summary>
            Entry ID.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.Properties">
            <summary>
            Properties of the entry.
            </summary>
            <remarks>
            Non-property content goes to annotations.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.EntityDescriptor">
            <summary>The entity descriptor.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.ResolvedObject">
            <summary>Resolved object.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.ActualType">
            <summary>Actual type of the ResolvedObject.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.ShouldUpdateFromPayload">
            <summary>Whether values should be updated from payload.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.EntityHasBeenResolved">
            <summary>Whether the entity has been resolved / created.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.CreatedByMaterializer">
            <summary>Whether the materializer has created the ResolvedObject instance.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.ForLoadProperty">
            <summary>Is this entry created for LoadProperty.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.NavigationLinks">
            <summary>The navigation links.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.Format">
            <summary> Gets the format </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerEntry.EntityDescriptorUpdated">
            <summary> Whether the entity descriptor has been updated.</summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags">
            <summary>
            Masks used get/set the status of the entry
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags.ShouldUpdateFromPayload">
            <summary>Bitmask for ShouldUpdateFromPayload flag.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags.CreatedByMaterializer">
            <summary>Bitmask for CreatedByMaterializer flag.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags.EntityHasBeenResolved">
            <summary>Bitmask for EntityHasBeenResolved flag.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags.EntityDescriptorUpdated">
            <summary>Bitmask for MediaLinkEntry flag (value).</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerEntry.EntryFlags.ForLoadProperty">
            <summary>Bitmask for LoadProperty scenario.</summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.MaterializerFeed">
            <summary>
            Materializer state for a given ODataFeed
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerFeed.feed">
            <summary>The feed.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerFeed.entries">
            <summary>The entries.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerFeed.#ctor(Microsoft.Data.OData.ODataFeed,System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataEntry})">
            <summary>
            Prevents a default instance of the <see cref="T:System.Data.Services.Client.Materialization.MaterializerFeed"/> struct from being created.
            </summary>
            <param name="feed">The feed.</param>
            <param name="entries">The entries.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerFeed.CreateFeed(Microsoft.Data.OData.ODataFeed,System.Collections.Generic.IEnumerable{Microsoft.Data.OData.ODataEntry})">
            <summary>
            Creates the materializer feed.
            </summary>
            <param name="feed">The feed.</param>
            <param name="entries">The entries.</param>
            <returns>The materializer feed.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerFeed.GetFeed(Microsoft.Data.OData.ODataFeed)">
            <summary>
            Gets the materializer feed.
            </summary>
            <param name="feed">The feed.</param>
            <returns>The materializer feed.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerFeed.Feed">
            <summary>
            Gets the feed.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerFeed.Entries">
            <summary>
            Gets the entries.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerFeed.NextPageLink">
            <summary>
            URI representing the next page link.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Materialization.MaterializerNavigationLink">
            <summary>
            Materializer state for a given ODataNavigationLink
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerNavigationLink.link">
            <summary>The navigation link.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Materialization.MaterializerNavigationLink.feedOrEntry">
            <summary>An object field for the feed or enty.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerNavigationLink.#ctor(Microsoft.Data.OData.ODataNavigationLink,System.Object)">
            <summary>
            Prevents a default instance of the <see cref="T:System.Data.Services.Client.Materialization.MaterializerNavigationLink"/> struct from being created.
            </summary>
            <param name="link">The link.</param>
            <param name="materializedFeedOrEntry">Value of the link.</param>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerNavigationLink.CreateLink(Microsoft.Data.OData.ODataNavigationLink,System.Data.Services.Client.Materialization.MaterializerEntry)">
            <summary>
            Creates the materializer link with an entry.
            </summary>
            <param name="link">The link.</param>
            <param name="entry">The entry.</param>
            <returns>The materializer link.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerNavigationLink.CreateLink(Microsoft.Data.OData.ODataNavigationLink,Microsoft.Data.OData.ODataFeed)">
            <summary>
            Creates the materializer link with a feed.
            </summary>
            <param name="link">The link.</param>
            <param name="feed">The feed.</param>
            <returns>The materializer link.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Materialization.MaterializerNavigationLink.GetLink(Microsoft.Data.OData.ODataNavigationLink)">
            <summary>
            Gets the materializer link.
            </summary>
            <param name="link">The link.</param>
            <returns>The materializer link.</returns>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerNavigationLink.Link">
            <summary>
            Gets the link.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerNavigationLink.Entry">
            <summary>
            Gets the entry.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Materialization.MaterializerNavigationLink.Feed">
            <summary>
            Gets the feed.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.MediaEntryAttribute">
            <summary>
            This class marks a type that represents an Astoria client entity
            such that the Astoria client will treat it as a media entry
            according to ATOM's "media link entry" concept.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.MediaEntryAttribute.mediaMemberName">
            <summary>Name of the member that contains the data for the media entry</summary>
        </member>
        <member name="M:System.Data.Services.Client.MediaEntryAttribute.#ctor(System.String)">
            <summary>Creates a new instance of <see cref="T:System.Data.Services.Client.MediaEntryAttribute" />.</summary>
            <param name="mediaMemberName">A string value that identifies the property that holds media data.</param>
            <remarks>
            Creates a new MediaEntryAttribute attribute and sets the name
            of the member that contains the actual data of the media entry
            (e.g. a byte[] containing a picture, a string containing HTML, etc.)
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.MediaEntryAttribute.MediaMemberName">
            <summary>The name of the property on the class that holds the media, usually binary data.</summary>
            <returns>A string value that identifies the property that holds media data.</returns>
        </member>
        <member name="T:System.Data.Services.Client.MergeOption">
            <summary>
            Used to specify a value synchronization strategy.
            </summary>
            <remarks>
            Equivalent to System.Data.dll!System.Data.LoadOption
            Equivalent to System.Data.Linq.dll!System.Data.Linq.RefreshMode
            Equivalent to System.Data.Entity.dll!System.Data.Objects.MergeOption
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.MergeOption.AppendOnly">
            <summary>
            No current values are modified.
            </summary>
            <remarks>
            Equivalent to System.Data.Objects.MergeOption.AppendOnly
            Equivalent to System.Data.Linq.RefreshMode.KeepCurrentValues
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.MergeOption.OverwriteChanges">
            <summary>
            All current values are overwritten with current store values,
            regardless of whether they have been changed.
            </summary>
            <remarks>
            Equivalent to System.Data.LoadOption.OverwriteChanges
            Equivalent to System.Data.Objects.MergeOption.OverwriteChanges
            Equivalent to System.Data.Linq.RefreshMode.OverwriteCurrentValues
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.MergeOption.PreserveChanges">
            <summary>
            Current values that have been changed are not modified, but
            any unchanged values are updated with the current store
            values. No changes are lost in this merge.
            </summary>
            <remarks>
            Equivalent to System.Data.LoadOption.PreserveChanges
            Equivalent to System.Data.Objects.MergeOption.PreserveChanges
            Equivalent to System.Data.Linq.RefreshMode.KeepChanges
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.MergeOption.NoTracking">
            <summary>
            Equivalent to System.Data.Objects.MergeOption.NoTracking
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.MimeTypePropertyAttribute">
            <summary>
            This attribute indicates another property in the same type that
            contains the MIME type that should be used for the data contained
            in the property this attribute is applied to.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.MimeTypePropertyAttribute.dataPropertyName">
            <summary>The name of the property that contains the data</summary>
        </member>
        <member name="F:System.Data.Services.Client.MimeTypePropertyAttribute.mimeTypePropertyName">
            <summary>The name of the property that contains the mime type</summary>
        </member>
        <member name="M:System.Data.Services.Client.MimeTypePropertyAttribute.#ctor(System.String,System.String)">
            <summary>Creates a new instance of the MimeTypePropertyAttribute.</summary>
            <param name="dataPropertyName">A string that contains the name of the new property attribute.</param>
            <param name="mimeTypePropertyName">A string that contains the Mime type of the new property attribute.</param>
        </member>
        <member name="P:System.Data.Services.Client.MimeTypePropertyAttribute.DataPropertyName">
            <summary>Gets the name of the MimeTypePropertyAttribute.</summary>
            <returns>A string that contains the name of the property attribute. </returns>
        </member>
        <member name="P:System.Data.Services.Client.MimeTypePropertyAttribute.MimeTypePropertyName">
            <summary>Gets the Mime type of the MimeTypePropertyAttribute</summary>
            <returns>A string that contains the Mime type of the property attribute. </returns>
        </member>
        <member name="T:System.Data.Services.Client.EntityDescriptor">
            <summary>
            represents the cached entity
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.identity">
            <summary>uri to identitfy the entity</summary>
            <remarks>&lt;atom:id&gt;identity&lt;/id&gt;</remarks>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.entity">
            <summary>entity</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.defaultStreamDescriptor">
            <summary>tracks information about the default stream, if any.</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.addToUri">
            <summary>uri of the resource set to add the entity to during save</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.selfLink">
            <summary>uri to query the entity</summary>
            <remarks>&lt;atom:link rel="self" href="queryLink" /&gt;</remarks>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.editLink">
            <summary>uri to edit the entity. In case of deep add, this can also refer to the navigation property name.</summary>
            <remarks>&lt;atom:link rel="edit" href="editLink" /&gt;</remarks>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.relatedEntityLinks">
            <summary>
            Contains the LinkInfo (navigation and relationship links) for navigation properties
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.transientEntityDescriptor">
            <summary>
            entity descriptor instance which contains metadata from responses which haven't been fully processed/materialized yet.
            This is used only in non-batch SaveChanges scenario.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.streamDescriptors">
            <summary>List of named streams for this entity</summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityDescriptor.operationDescriptors">
            <summary>List of service operation descriptors for this entity.</summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.#ctor(System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Create a new instance of Entity descriptor.
            </summary>
            <param name="model">The client model</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLatestIdentity">
            <summary>
            returns the most recent identity of the entity
            </summary>
            <returns>the identity of the entity, as returned in the latest response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLatestEditLink">
            <summary>return the most recent edit link for the entity</summary>
            <returns>the uri to edit the entity associated with the entity descriptor.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLatestEditStreamUri">
            <summary>return the most recent edit link for the MR associated with the entity</summary>
            <returns>the uri to edit the MR associated with the entity descriptor.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLatestETag">
            <summary>return the most recent etag for the entity</summary>
            <returns>etag for the entity associated with the entity descriptor.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLatestStreamETag">
            <summary>return the most return etag for the MR associated with the entity</summary>
            <returns>etag for the MR associated with the entity descriptor.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLatestServerTypeName">
            <summary>return the most recent type name of the entity as returned in the response payload.</summary>
            <returns>the type name of the entity as returned in the response payload.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetResourceUri(System.Data.Services.Client.UriResolver,System.Boolean)">
            <summary>uri to edit the entity</summary>
            <param name="baseUriResolver">retrieves the baseUri to use for a given entity set.</param>
            <param name="queryLink">whether to return the query link or edit link</param>
            <returns>absolute uri which can be used to edit the entity</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.IsRelatedEntity(System.Data.Services.Client.LinkDescriptor)">
            <summary>is the entity the same as the source or target entity</summary>
            <param name="related">related end</param>
            <returns>true if same as source or target entity</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetRelatedEnd">
            <summary>
            Return the related end for this resource. One should call this method, only if the resource is inserted via deep resource.
            </summary>
            <returns>returns the related end via which the resource was inserted.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.ClearChanges">
            <summary>
            clears all the changes - like closes the save stream, clears the transient entity descriptor.
            This method is called when the client is done with sending all the pending requests.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.CloseSaveStream">
            <summary>
            Closes the save stream if there's any and sets it to null
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.AddNavigationLink(System.String,System.Uri)">
            <summary>
            Add the given navigation link to the entity descriptor
            </summary>
            <param name="propertyName">name of the navigation property via which this entity is related to the other end.</param>
            <param name="navigationUri">uri that can be used to navigate from this entity to the other end.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.AddAssociationLink(System.String,System.Uri)">
            <summary>
            Add the given association link to the entity descriptor
            </summary>
            <param name="propertyName">name of the navigation property via which this entity is related to the other end.</param>
            <param name="associationUri">uri that can be used to navigate associations for this property.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.MergeLinkInfo(System.Data.Services.Client.LinkInfo)">
            <summary>
            Merges the given linkInfo to the entity descriptor,
            overwrites existing links with new ones (coming from the payload)
            </summary>
            <param name="linkInfo">linkInfo</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetNavigationLink(System.Data.Services.Client.UriResolver,System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Try and get the navigation link. If the navigation link is not specified, then its used the self link of the entity and
            appends the property name.
            </summary>
            <param name="baseUriResolver">retrieves the appropriate baseUri for a given entitySet.</param>
            <param name="property">ClientProperty instance representing the navigation property.</param>
            <returns>returns the uri for the given link. If the link is not present, its uses the self link of the current entity and appends the navigation property name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.TryGetLinkInfo(System.String,System.Data.Services.Client.LinkInfo@)">
            <summary>
            Returns the LinkInfo for the given navigation property.
            </summary>
            <param name="propertyName">name of the navigation property </param>
            <param name="linkInfo"> LinkInfo for the navigation propery</param>
            <returns>true if LinkInfo is found for the navigation property, false if not found</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.AddStreamInfoIfNotPresent(System.String)">
            <summary>
            Check if there is a stream with this name. If yes, returns the information about that stream, otherwise add a streams with the given name.
            </summary>
            <param name="name">name of the stream.</param>
            <returns>an existing or new namedstreaminfo instance with the given name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.AddOperationDescriptor(System.Data.Services.Client.OperationDescriptor)">
            <summary>
            Adds an operation descriptor to the list of operation descriptors.
            </summary>
            <param name="operationDescriptor">the operation descriptor to add.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.ClearOperationDescriptors">
            <summary>
            Clears all operator descriptors
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.AppendOperationalDescriptors(System.Collections.Generic.IEnumerable{System.Data.Services.Client.OperationDescriptor})">
            <summary>
            Appends OperationDescriptors to the existing list of OperationDescriptors
            </summary>
            <param name="descriptors">List containing OperationDescriptors to add for this entityDescriptor</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.TryGetNamedStreamInfo(System.String,System.Data.Services.Client.StreamDescriptor@)">
            <summary>
            Gets the stream info with the given name.
            </summary>
            <param name="name">name of the stream.</param>
            <param name="namedStreamInfo">information about the stream with the given name.</param>
            <returns>true if there is a stream with the given name, otherwise returns false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.MergeStreamDescriptor(System.Data.Services.Client.StreamDescriptor)">
            <summary>
            Merges the given named stream info object.
            If the stream descriptor is already present, then this method merges the info from the given stream descriptor
            into the existing one, otherwise justs add this given stream descriptor to the list of stream descriptors for
            this entity.
            </summary>
            <param name="materializedStreamDescriptor">namedStreamInfo instance containing information about the stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.SetParentForInsert(System.Data.Services.Client.EntityDescriptor,System.String)">
            <summary>
            Sets up the descriptor's parent descriptor and parent property. Only valid if the descriptor is in the Added state.
            </summary>
            <param name="parentDescriptor">The parent descriptor.</param>
            <param name="propertyForInsert">The property for insert.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.SetEntitySetUriForInsert(System.Uri)">
            <summary>
            Sets the entity set URI to use for inserting the entity tracked by this descriptor. Only valid if the descriptor is in the added state.
            </summary>
            <param name="entitySetInsertUri">The entity set insert URI.</param>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLinkInfo(System.String)">
            <summary>
            Returns LinkInfo for the given property, if it does not exists than a new one is created.
            </summary>
            <param name="propertyName">name of the navigation property</param>
            <returns>LinkInfo for propertyName</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.GetLink(System.Boolean)">
            <summary>
            In V1, we used to not support self links. Hence we used to use edit links as self links.
            IN V2, we are adding support for self links. But if there are not specified, we need to
            fall back on the edit link.
            </summary>
            <param name="queryLink">whether to get query link or the edit link.</param>
            <returns>the query or the edit link, as specified in the <paramref name="queryLink"/> parameter.</returns>
        </member>
        <member name="M:System.Data.Services.Client.EntityDescriptor.CreateDefaultStreamDescriptor">
            <summary>
            Creates a default stream descriptor, if there is none yet, and returns it.
            If there is one already present, then returns the current instance.
            </summary>
            <returns>stream descriptor representing the default stream.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.Identity">
            <summary>Gets the URI that is the identity value of the entity.</summary>
            <returns>The <see cref="P:System.Data.Services.Client.EntityDescriptor.Identity" /> property corresponds to the identity element of the entry that represents the entity in the Atom response.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.SelfLink">
            <summary>Gets the URI that is used to return the entity resource.</summary>
            <returns>A URI that returns the entity.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.EditLink">
            <summary>Gets the URI that modifies the entity.</summary>
            <returns>The edit link URI for the entity resource.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.ReadStreamUri">
            <summary>Gets the URI that accesses the binary property data of the entity.</summary>
            <returns>A URI that accesses the binary property as a stream.</returns>
            <remarks>
            If the entity for the box is an MLE this property stores the content source URI of the MLE.
            That is, it stores the read URI for the associated MR.
            Setting it to non-null marks the entity as MLE.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.EditStreamUri">
            <summary>Gets the URI that modifies the binary property data of the entity.</summary>
            <returns>The <see cref="P:System.Data.Services.Client.EntityDescriptor.EditStreamUri" /> property contains the edit-media link URI for the Media Resource that is associated with the entity, which is a Media Link Entry.</returns>
            <remarks>
            If the entity for the box is an MLE this property stores the edit-media link URI.
            That is, it stores the URI to send PUTs for the associated MR.
            Setting it to non-null marks the entity as MLE.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.Entity">
            <summary>Gets the entity that contains the update data.</summary>
            <returns>An object that contains update data.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.ETag">
            <summary>Gets an eTag value that indicates the state of data targeted for update since the last call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</summary>
            <returns>The state of data.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.StreamETag">
            <summary>Gets the eTag for the media resource associated with an entity that is a media link entry.</summary>
            <returns>A string value that indicates the state of data.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.ParentForInsert">
            <summary>Gets the parent entity that is related to the entity.</summary>
            <returns>An object that is the parent entity in the relationship link.</returns>
            <remarks>This is only set for entities added through AddRelateObject call</remarks>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.ParentPropertyForInsert">
            <summary>Gets the name of the property of the entity that is a navigation property and links to the parent entity.</summary>
            <returns>The name of the parent property.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.ServerTypeName">
            <summary>Gets the name of the type in the data source to which the entity is mapped.</summary>
            <returns>A string that is the name of the data type.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.LinkInfos">
            <summary>Returns a collection of links that are the relationships in which the entity participates.</summary>
            <returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Client.LinkInfo" /> objects that represents links in which the entity participates.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.StreamDescriptors">
            <summary>Returns a collection of named binary data streams that belong to the entity.</summary>
            <returns>A <see cref="T:System.Collections.ObjectModel.ReadOnlyCollection`1" /> of <see cref="T:System.Data.Services.Client.StreamDescriptor" /> objects that are the named binary data streams that belong to the entity.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.OperationDescriptors">
            <summary>Gets a collection of operation descriptors associated with the entity.</summary>
            <returns>A collection of operation descriptors associated with the entity.</returns>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.Model">
            <summary>
            Gets the client model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.ParentEntity">
            <summary>Parent entity</summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.DescriptorKind">
            <summary>this is a entity</summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.IsDeepInsert">
            <summary>
            Returns true if the resource was inserted via its parent. E.g. POST customer(0)/Orders
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.SaveStream">
            <summary>
            The stream which contains the new content for the MR associated with this MLE.
            This stream is used during SaveChanges to POST/PUT the MR.
            Setting it to non-null marks the entity as MLE.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.StreamState">
            <summary>
            Describes whether the SaveStream is for Insert or Update.
            The value NoStream is for both non-MLEs and MLEs with unmodified stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.IsMediaLinkEntry">
            <summary>
            Returns true if we know that the entity is MLE. Note that this does not include the information
            from the entity type. So if the entity was attributed with HasStream for example
            this boolean might not be aware of it.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.IsModified">
            <summary>
            Returns true if the entry has been modified (and thus should participate in SaveChanges).
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.TransientEntityDescriptor">
            <summary>
            entity descriptor instance containing metadata from responses, which hasn't been fully processed yet.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.DefaultStreamDescriptor">
            <summary>
            Returns the stream descriptor for the default stream associated with this entity.
            If this entity is not an MLE, then returns null;
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.EdmValue">
            <summary>
            Gets the edm structured value associated with this entity.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.EntityDescriptor.EntitySetName">
            <summary>
            The entity set name provided in either AttachTo or AddObject.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.EntityStates">
            <summary>
            Describes the insert/update/delete state of an entity or link.
            </summary>
            <remarks>
            Deleting an inserted resource will detach it.
            After SaveChanges, deleted resources will become detached and Added &amp; Modified resources will become unchanged.
            </remarks>
        </member>
        <member name="F:System.Data.Services.Client.EntityStates.Detached">
            <summary>
            The resource is not tracked by the context.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityStates.Unchanged">
            <summary>
            The resource is tracked by a context with no changes.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityStates.Added">
            <summary>
            The resource is tracked by a context for insert.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityStates.Deleted">
            <summary>
            The resource is tracked by a context for deletion.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.EntityStates.Modified">
            <summary>
            The resource is tracked by a context for update.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.SaveChangesOptions">
            <summary>
            options when saving changes
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveChangesOptions.None">
            <summary>default option, using multiple requests to the server stopping on the first failure</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveChangesOptions.Batch">
            <summary>save the changes in a single changeset in a batch request.</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveChangesOptions.ContinueOnError">
            <summary>save all the changes using multiple requests</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveChangesOptions.ReplaceOnUpdate">
            <summary>Use replace semantics when doing update.</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveChangesOptions.PatchOnUpdate">
            <summary>Use PATCH verb when doing update (retains the merge semantics).</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveChangesOptions.BatchWithIndependentOperations">
            <summary>save each change independently in a batch request.</summary>
        </member>
        <member name="T:System.Data.Services.Client.SaveResult">
            <summary>
            Handle the request (both sync and async) for non batch scenarios
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.cachedResponses">
            <summary>keeps track of all the parsed responses.</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.inMemoryResponseStream">
            <summary>
            We cache the current response and then parse it. we need to do this for the async case only.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.responseMessage">
            <summary>http web response</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.cachedResponse">
            <summary>remove it later</summary>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.#ctor(System.Data.Services.Client.DataServiceContext,System.String,System.Data.Services.Client.SaveChangesOptions,System.AsyncCallback,System.Object)">
            <summary>
            constructor for SaveResult
            </summary>
            <param name="context">context</param>
            <param name="method">method</param>
            <param name="options">options</param>
            <param name="callback">user callback</param>
            <param name="state">user state object</param>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.BeginCreateNextChange">
            <summary>
            This starts the next change
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CreateNextChange">
            <summary>
            This starts the next change
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.FinishCurrentChange(System.Data.Services.Client.BaseAsyncResult.PerRequest)">
            <summary>Read and store response data for the current change, and try to start the next one</summary>
            <param name="pereq">the completed per request object</param>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.HandleOperationResponse(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>IODataResponseMessage contain response for the operation.</summary>
            <param name="responseMsg">IODataResponseMessage instance.</param>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.HandleResponse">
            <summary>
            Handle the response.
            </summary>
            <returns>an instance of the DataServiceResponse, containing individual responses for all the requests made during this SaveChanges call.</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.GetMaterializer(System.Data.Services.Client.EntityDescriptor,System.Data.Services.Client.ResponseInfo)">
            <summary>
            Get the materializer to process the response.
            </summary>
            <param name="entityDescriptor">entity descriptor whose response is getting materialized.</param>
            <param name="responseInfo">information about the response to be materialized.</param>
            <returns>an instance of MaterializeAtom, that can be used to materialize the response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CreateRequestMessage(System.String,System.Uri,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.HttpStack,System.Data.Services.Client.Descriptor)">
            <summary>
            Returns the request message to write the headers and payload into.
            </summary>
            <param name="method">Http method for the request.</param>
            <param name="requestUri">Base Uri for the request.</param>
            <param name="headers">Request headers.</param>
            <param name="httpStack">HttpStack to use.</param>
            <param name="descriptor">Descriptor for the request, if there is one.</param>
            <returns>an instance of IODataRequestMessage.</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CreateNonBatchChangeData(System.Int32,System.Data.Services.Client.ODataRequestMessageWrapper)">
            <summary>
            Create memory stream for descriptor (entity or link or MR or named stream).
            </summary>
            <param name="index">Index into changed entries.</param>
            <param name="requestMessage">RequestMessage to be used to generate the payload.</param>
            <returns>Stream of data for descriptor.</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CreateNextRequest">
            <summary>
            Create request message from the next change.
            </summary>
            <returns>An instance of ODataRequestMessage for the next change.</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CheckAndProcessMediaEntryPost(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Check to see if the resource to be inserted is a media descriptor, and if so
            setup a POST request for the media content first and turn the rest of
            the operation into a PUT to update the rest of the properties.
            </summary>
            <param name="entityDescriptor">The resource to check/process</param>
            <returns>An instance of ODataRequestMessage to do POST to the media resource</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CheckAndProcessMediaEntryPut(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Checks if the entity descriptor represents an MLE with modified MR and if so creates a PUT request
              to update the MR.
            </summary>
            <param name="entityDescriptor">The entity descriptor for the entity to be checked.</param>
            <returns>An instance of ODataRequestMessage for the newly created MR PUT request or null if the entity is not MLE or its MR hasn't changed.</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CreateMediaResourceRequest(System.Uri,System.String,System.Version,System.Boolean,System.Boolean,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.Descriptor)">
            <summary>
            Creates HTTP request for the media resource (MR)
            </summary>
            <param name="requestUri">The URI to request</param>
            <param name="method">The HTTP method to use (POST or PUT)</param>
            <param name="version">version to be sent in the DSV request header.</param>
            <param name="sendChunked">Send the request using chunked encoding to avoid buffering.</param>
            <param name="applyResponsePreference">If the response preference setting should be applied to the request
            (basically means if the response is expected to contain an entity or not).</param>
            <param name="headers">Collection of request headers</param>
            <param name="descriptor">Descriptor for this media resource request.</param>
            <returns>An instance of ODataRequestMessage.</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.SetupMediaResourceRequest(System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.DataServiceSaveStream,System.String)">
            <summary>
            Sets the content and the headers of the media resource request
            </summary>
            <param name="headers">The header collection to setup.</param>
            <param name="saveStream">DataServiceSaveStream instance containing all information about the stream.</param>
            <param name="etag">ETag header value to be set. If passed null, etag header is not set.</param>
            <remarks>This only works with the V2 MR support (SetSaveStream), this will not setup
            the request for V1 property based MRs.</remarks>
            <returns>List of headers to reset</returns>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.HandleOperationException(System.InvalidOperationException,Microsoft.Data.OData.IODataResponseMessage)">
            <summary>operation with exception</summary>
            <param name="e">exception object</param>
            <param name="response">response object</param>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CheckContinueOnError">
            <summary>
            Decide whether we should continue when there is an error thrown
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.HandleOperationResponseData(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>
            copy the response data
            </summary>
            <param name="response">response object</param>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.HandleOperationResponseData(Microsoft.Data.OData.IODataResponseMessage,System.IO.Stream)">
            <summary>
            Handle the response payload.
            </summary>
            <param name="responseMsg">httpwebresponse instance.</param>
            <param name="responseStream">stream containing the response payload.</param>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CreateNamedStreamRequest(System.Data.Services.Client.StreamDescriptor)">
            <summary>
            Creates a request for the given named stream.
            </summary>
            <param name="namedStreamInfo">NamedStreamInfo instance containing information about the stream.</param>
            <returns>An instance of ODataRequestMessage for the given named stream.</returns>
        </member>
        <member name="P:System.Data.Services.Client.SaveResult.IsBatchRequest">
            <summary>returns false since this class handles only non-batch scenarios</summary>
        </member>
        <member name="P:System.Data.Services.Client.SaveResult.ProcessResponsePayload">
            <summary>
            returns true if the payload needs to be processed.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.SaveResult.ResponseStream">
            <summary>
            In async case, this is a memory stream used to cache responses, as we are reading async from the underlying http web response stream.
            In non-async case, this is the actual response stream, as returned by the http request.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.SaveResult.CachedResponse">
            <summary>
            cached response
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.CachedResponse.Headers">
            <summary>response headers</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.CachedResponse.StatusCode">
            <summary>response status code</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.CachedResponse.Version">
            <summary>Parsed response DataServiceVersion header.</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.CachedResponse.MaterializerEntry">
            <summary>entry containing the parsed response.</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.CachedResponse.Exception">
            <summary>Exception if encountered.</summary>
        </member>
        <member name="F:System.Data.Services.Client.SaveResult.CachedResponse.Descriptor">
            <summary>descriptor for which the response is getting parsed.</summary>
        </member>
        <member name="M:System.Data.Services.Client.SaveResult.CachedResponse.#ctor(System.Data.Services.Client.Descriptor,System.Data.Services.Client.HeaderCollection,System.Net.HttpStatusCode,System.Version,System.Data.Services.Client.Materialization.MaterializerEntry,System.Exception)">
            <summary>
            Constructor
            </summary>
            <param name="descriptor">descriptor whose response is getting processed.</param>
            <param name="headers">headers</param>
            <param name="statusCode">status code</param>
            <param name="responseVersion">Parsed response DataServiceVersion header.</param>
            <param name="entry">atom entry, if there is a non-error response payload.</param>
            <param name="exception">exception, if the request threw an exception.</param>
        </member>
        <member name="T:System.Data.Services.Client.SendingRequestEventArgs">
            <summary>
            Event args for the event fired before executing a web request. Gives a
            chance to customize or replace the request object to be used.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.SendingRequestEventArgs.request">
            <summary>The web request reported through this event</summary>
        </member>
        <member name="F:System.Data.Services.Client.SendingRequestEventArgs.requestHeaders">
            <summary>The request header collection.</summary>
        </member>
        <member name="M:System.Data.Services.Client.SendingRequestEventArgs.#ctor(System.Net.WebRequest,System.Net.WebHeaderCollection)">
            <summary>
            Constructor
            </summary>
            <param name="request">The request reported through this event</param>
            <param name="requestHeaders">The request header collection.</param>
        </member>
        <member name="P:System.Data.Services.Client.SendingRequestEventArgs.Request">
            <summary>Gets or sets the <see cref="T:System.Net.HttpWebRequest" /> instance about to be sent by the client library to the data service.</summary>
            <returns><see cref="T:System.Net.HttpWebRequest" />.</returns>
        </member>
        <member name="P:System.Data.Services.Client.SendingRequestEventArgs.RequestHeaders">
            <summary>Gets the collection protocol headers that are associated with the request to the data service.</summary>
            <returns>A collection of protocol headers that are associated with the request.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Serializer">
            <summary>
            Serializes the request data into the given format using the given message writer.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializer.requestInfo">
            <summary>where to pull the changes from</summary>
        </member>
        <member name="F:System.Data.Services.Client.Serializer.propertyConverter">
            <summary>The property converter to use for creating ODataProperty instances.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.#ctor(System.Data.Services.Client.RequestInfo)">
            <summary>
            Creates a new instance of the Serializer.
            </summary>
            <param name="requestInfo">the request info.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.CreateMessageWriter(System.Data.Services.Client.ODataRequestMessageWrapper,System.Data.Services.Client.RequestInfo,System.Boolean)">
            <summary>
            Creates an instance of ODataMessageWriter.
            </summary>
            <param name="requestMessage">Instance of IODataRequestMessage.</param>
            <param name="requestInfo">RequestInfo containing information about the client settings.</param>
            <param name="isParameterPayload">true if the writer is intended to for a parameter payload, false otherwise.</param>
            <returns>An instance of ODataMessageWriter.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.CreateODataEntry(System.Data.Services.Client.EntityDescriptor,System.String,System.Data.Services.Client.Metadata.ClientTypeAnnotation,System.Data.Services.Client.DataServiceClientFormat)">
            <summary>
            Creates an ODataEntry for the given EntityDescriptor and fills in its ODataLib metadata.
            </summary>
            <param name="entityDescriptor">The entity descriptor.</param>
            <param name="serverTypeName">Name of the server type.</param>
            <param name="entityType">The client-side entity type.</param>
            <param name="clientFormat">The current client format.</param>
            <returns>An odata entry with its metadata filled in.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.WriteBodyOperationParameters(System.Collections.Generic.List{System.Data.Services.Client.BodyOperationParameter},System.Data.Services.Client.ODataRequestMessageWrapper)">
            <summary>
            Writes the body operation parameters associated with a ServiceAction.
            </summary>
            <param name="operationParameters">The list of operation parameters to write.</param>
            <param name="requestMessage">The OData request message used to write the operation parameters.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.WriteEntry(System.Data.Services.Client.EntityDescriptor,System.Collections.Generic.IEnumerable{System.Data.Services.Client.LinkDescriptor},System.Data.Services.Client.ODataRequestMessageWrapper)">
            <summary>
            Write the entry element.
            </summary>
            <param name="entityDescriptor">The entity.</param>
            <param name="relatedLinks">Collection of links related to the entity.</param>
            <param name="requestMessage">The OData request message.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.WriteNavigationLink(System.Data.Services.Client.EntityDescriptor,System.Collections.Generic.IEnumerable{System.Data.Services.Client.LinkDescriptor},System.Data.Services.Client.ODataWriterWrapper)">
            <summary>
            Writes a navigation link.
            </summary>
            <param name="entityDescriptor">The entity</param>
            <param name="relatedLinks">The links related to the entity</param>
            <param name="odataWriter">The ODataWriter used to write the navigation link.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.WriteEntityReferenceLink(System.Data.Services.Client.LinkDescriptor,System.Data.Services.Client.ODataRequestMessageWrapper)">
            <summary>
            Writes an entity reference link.
            </summary>
            <param name="binding">The link descriptor.</param>
            <param name="requestMessage">The request message used for writing the payload.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.WriteUriOperationParametersToUri(System.Uri,System.Collections.Generic.List{System.Data.Services.Client.UriOperationParameter})">
            <summary>
            Enumerates through the list of URI operation parameters and creates a new Uri with the uri operation parameters written as query string of the new Uri.
            </summary>
            <param name="requestUri">The Uri used to construct the new Uri.</param>
            <param name="operationParameters">The non-empty list of uri parameters which will be converted to query string.</param>
            <returns>Uri containing the uri parameters as query string.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.StartEntryXmlCustomizer(Microsoft.Data.OData.ODataEntry,System.Xml.XmlWriter)">
            <summary>
            Returns the new XmlWriter to cache the payload for firing WritingEntity event.
            </summary>
            <param name="entry">ODataEntry instance that is currently getting serialized.</param>
            <param name="entryWriter">XmlWriter that is used to write the payload.</param>
            <returns>XmlWriter instance that needs to be used to write the payload for the given odataentry.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.EndEntryXmlCustomizer(Microsoft.Data.OData.ODataEntry,System.Xml.XmlWriter,System.Xml.XmlWriter)">
            <summary>
            Fires the WritingEntity event, and then copies the payload into the parent writer.
            </summary>
            <param name="entry">ODataEntry that is currently getting serialized.</param>
            <param name="entryWriter">XmlWriter writer instance that got returned by StartEntryXmlCustomizer method.</param>
            <param name="parentWriter">Parent writer to which the payload needs to get copied to, after firing the event.</param>
        </member>
        <member name="M:System.Data.Services.Client.Serializer.ConvertToEscapedUriValue(System.String,System.Object)">
            <summary>
            Converts a <see cref="T:System.Data.Services.Client.UriOperationParameter"/> value to an escaped string for use in a Uri. Wraps the call to ODL's ConvertToUriLiteral and escapes the results.
            </summary>
            <param name="paramName">The name of the <see cref="T:System.Data.Services.Client.UriOperationParameter"/>. Used for error reporting.</param>
            <param name="value">The value of the <see cref="T:System.Data.Services.Client.UriOperationParameter"/>.</param>
            <returns>A string representation of <paramref name="value"/> for use in a Url.</returns>
        </member>
        <member name="T:System.Data.Services.Client.WritingEntityInfo">
            <summary>
            To cache the entity instance as annotation for firing WritingEntity event
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.WritingEntityInfo.Entity">
            <summary>Entity instance that is currently getting serialized.</summary>
        </member>
        <member name="F:System.Data.Services.Client.WritingEntityInfo.EntryPayload">
            <summary>XDocument instance to cache the payload.</summary>
        </member>
        <member name="F:System.Data.Services.Client.WritingEntityInfo.RequestInfo">
            <summary>RequestInfo instance.</summary>
        </member>
        <member name="M:System.Data.Services.Client.WritingEntityInfo.#ctor(System.Object,System.Data.Services.Client.RequestInfo)">
            <summary>
            Creates a new instance of WritingEntityInfo
            </summary>
            <param name="entity">Entity instance that is currently getting serialized.</param>
            <param name="requestInfo">RequestInfo instance.</param>
        </member>
        <member name="T:System.Data.Services.Client.StreamDescriptor">
            <summary>
            Holds information about stream.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.StreamDescriptor.streamLink">
            <summary>
            The Data service stream link object
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.StreamDescriptor.entityDescriptor">
            <summary>entity descriptor refering the parent entity.</summary>
        </member>
        <member name="F:System.Data.Services.Client.StreamDescriptor.transientNamedStreamInfo">
            <summary>
            transient named stream info, which contains metadata from the response which has not been materialized yet.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.StreamDescriptor.#ctor(System.String,System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Creates a StreamDescriptor class with the given name and other information
            </summary>
            <param name="name">name of the stream.</param>
            <param name="entityDescriptor">instance of entity descriptor that contains this stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.StreamDescriptor.#ctor(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Creates a StreamDescriptor class for the default stream (MR) associated with an entity.
            </summary>
            <param name="entityDescriptor">instance of entity descriptor that contains this stream.</param>
        </member>
        <member name="M:System.Data.Services.Client.StreamDescriptor.MergeStreamDescriptor(System.Data.Services.Client.StreamDescriptor,System.Data.Services.Client.StreamDescriptor)">
            <summary>
            Merge the information from the new stream info into the existing one.
            </summary>
            <param name="existingStreamDescriptor">stream info into which the data needs to be merged.</param>
            <param name="newStreamDescriptor">stream info which contains the latest data.</param>
        </member>
        <member name="M:System.Data.Services.Client.StreamDescriptor.ClearChanges">
            <summary>
            clears all the changes - like closes the save stream, clears the transient entity descriptor.
            This method is called when the client is done with sending all the pending requests.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.StreamDescriptor.GetLatestEditLink">
            <summary>return the most recent edit link for the named stream</summary>
            <returns>the uri to edit the named stream.</returns>
        </member>
        <member name="M:System.Data.Services.Client.StreamDescriptor.GetLatestETag">
            <summary>return the most recent etag for the named stream</summary>
            <returns>the etag for the named stream.</returns>
        </member>
        <member name="M:System.Data.Services.Client.StreamDescriptor.CloseSaveStream">
            <summary>
            Closes the save stream if there's any and sets it to null
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.StreamLink">
            <summary>The <see cref="T:System.Data.Services.Client.DataServiceStreamLink" /> that represents the binary resource stream.</summary>
            <returns>Returns <see cref="T:System.Data.Services.Client.DataServiceStreamLink" />.</returns>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.EntityDescriptor">
            <summary>The <see cref="T:System.Data.Services.Client.EntityDescriptor" /> that represents the entity to which the named resource stream belongs.</summary>
            <returns>The <see cref="T:System.Data.Services.Client.EntityDescriptor" /> of the entity.</returns>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.Name">
            <summary>
            Returns the name of the stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.SelfLink">
            <summary>
            Returns the URI to get the named stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.EditLink">
            <summary>
            Returns the URI to update the named stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.ContentType">
            <summary>
            Returns the content type of the named stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.ETag">
            <summary>
            Returns the etag for the named stream.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.SaveStream">
            <summary>
            Returns the stream associated with this name.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.DescriptorKind">
            <summary>return true, since this class represents entity descriptor.</summary>
        </member>
        <member name="P:System.Data.Services.Client.StreamDescriptor.TransientNamedStreamInfo">
            <summary>
            Transient named stream info, if there are responses which hasn't been fully processed yet.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.TypeResolver">
            <summary>
            Class which contains all the logic for resolving the type from the wire name.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeResolver.edmTypeNameMap">
            <summary>
            Dictionary instance to map the edm type name to the client type annotation.
            In V1/V2, we never used to cache this and call this during materialization. Hence 2 different contexts can resolve the same wire type
            differently and that would have been fine. Also, someone could have written a logic that might differ based on queries within the same context.
            For e.g. before executing a projection query, the user can set a flag so that the resolver behaves differently.
            Hence caching this locally for every request to simulate that behavior.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeResolver.resolveTypeFromName">
            <summary>The callback for resolving client CLR types.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeResolver.resolveNameFromType">
            <summary>The callback for resolving server type names.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeResolver.clientEdmModel">
            <summary>The client model.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeResolver.serviceModel">
            <summary>The service model, or null if one has not been provided.</summary>
        </member>
        <member name="F:System.Data.Services.Client.TypeResolver.skipTypeAssignabilityCheck">
            <summary>Indicates whether or not to skip the type assignability check.</summary>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.#ctor(System.Data.Services.Client.ClientEdmModel,System.Func{System.String,System.Type},System.Func{System.Type,System.String},Microsoft.Data.Edm.IEdmModel)">
            <summary>
            Creates an instance of TypeResolver class.
            </summary>
            <param name="model">The client model.</param>
            <param name="resolveTypeFromName">The callback to resolve client CLR types.</param>
            <param name="resolveNameFromType">The callback for resolving server type names.</param>
            <param name="serviceModel">The service model.</param>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.IsProjectionRequest">
            <summary>
            In V2, in projection path, we do not use to check for assignability between the expected type
            and the type returned by the type resolver. This variable is used to track that scenario.
            If this is true, the current request is a projection request otherwise not.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.ResolveTypeForMaterialization(System.Type,System.String)">
            <summary>
            Resolves the client type that should be used for materialization.
            </summary>
            <param name="expectedType">Expected client clr type based on the API called.</param>
            <param name="readerTypeName">
            The name surfaced by the ODataLib reader.
            If we have a server model, this will be a server type name that needs to be resolved.
            If not, then this will already be a client type name.</param>
            <returns>The resolved annotation for the client type to materialize into.</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.ResolveWireTypeName(Microsoft.Data.Edm.IEdmType,System.String)">
            <summary>
            ODL callback for client type resolution
            </summary>
            <param name="expectedEdmType">The expected type for the given wire name</param>
            <param name="wireName">The name of the type from the payload</param>
            <returns>An IEdmType</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.ResolveExpectedTypeForReading(System.Type)">
            <summary>
            Resolves the expected EDM type to give to the ODataLib reader based on a client CLR type.
            </summary>
            <param name="clientClrType">The client side CLR type.</param>
            <returns>The resolved EDM type to provide to ODataLib.</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.ShouldWriteClientTypeForOpenServerProperty(Microsoft.Data.Edm.IEdmProperty,System.String)">
            <summary>
            Determines whether or not the client type should be written for a property that is not defined on the server.
            DEVNOTE: If there is no server model, the declaring type is complex, or the server type cannot be
            found then the server type will be assumed to match the client type.
            This is done this way to prevent getting this wrong if the server property is defined, but we cannot find it for some reason.
            So if the types do not match, or we aren't able to align them, we will not write the type name, allowing the server to interpret it as the correct type.
            </summary>
            <param name="clientProperty">The client-side property.</param>
            <param name="serverTypeName">The server type name of the current entity.</param>
            <returns>True if the client property type should be written because the property definitely not defined on the server type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.TryResolveEntitySetBaseTypeName(System.String,System.String@)">
            <summary>
            Tries to resolve the name of the base type of the given entity set if a server model has been provided.
            </summary>
            <param name="entitySetName">The name of the entity set.</param>
            <param name="serverTypeName">The server type name if one could be found.</param>
            <returns>Whether the type name could be found.</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.TryResolveNavigationTargetTypeName(System.String,System.String,System.String@)">
            <summary>
            Tries to resolve the name of a navigation property's target if a server model has been provided.
            </summary>
            <param name="serverSourceTypeName">The name of the server side source type.</param>
            <param name="navigationPropertyName">The name of the navigation property.</param>
            <param name="serverTypeName">The server type name if one could be found.</param>
            <returns>Whether the type name could be found.</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.TryToResolveServerType(System.Data.Services.Client.Metadata.ClientTypeAnnotation,Microsoft.Data.Edm.IEdmStructuredType@)">
            <summary>
            Tries to resolve the server type corresponding to the client type.
            </summary>
            <param name="clientTypeAnnotation">The client type annotation.</param>
            <param name="serverType">The server type, if the server type could be resolved.</param>
            <returns>Whether or not the server type could be resolved.</returns>
        </member>
        <member name="M:System.Data.Services.Client.TypeResolver.ResolveTypeFromName(System.String,System.Type)">
            <summary>
            User hook to resolve name into a type.
            </summary>
            <param name="wireName">Name to resolve.</param>
            <param name="expectedType">Expected type for the name.</param>
            <returns>the type as returned by the resolver. If no resolver is registered or resolver returns null, expected type is returned.</returns>
            <exception cref="T:System.InvalidOperationException">if ResolveType function returns a type not assignable to the userType</exception>
        </member>
        <member name="P:System.Data.Services.Client.TypeResolver.ReaderModel">
            <summary>
            Gets the reader model.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.UriOperationParameter">
            <summary>
            Represents a parameter associated with a service operation or a service function.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.UriOperationParameter.#ctor(System.String,System.Object)">
            <summary> Instantiates a new UriOperationParameter </summary>
            <param name="name">The name of the uri operation parameter.</param>
            <param name="value">The value of the uri operation parameter.</param>
        </member>
        <member name="T:System.Data.Services.Client.UriResolver">
            <summary>
            This immutable class is responsible for knowing how to correctly resolve base uri requests
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UriResolver.baseUri">
            <summary>The baseUri provided by the user. can be null.</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriResolver.resolveEntitySet">
            <summary>The function provided by the user to resolve the baseUri of entity sets. can be null</summary>
        </member>
        <member name="F:System.Data.Services.Client.UriResolver.baseUriWithSlash">
            <summary>base uri with guranteed trailing slash</summary>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.#ctor(System.Uri,System.Func{System.String,System.Uri})">
            <summary>
            Ctor for BaseUriResolver
            </summary>
            <param name="baseUri">The baseUri provided by the user.</param>
            <param name="resolveEntitySet">The function provider by the user to resolve the baseUri of the entity sets.</param>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.CreateFromBaseUri(System.Uri,System.String)">
            <summary>
            Creates a UriResolver from a baseUri
            </summary>
            <param name="baseUri">The baseUri to use in the UriResolver</param>
            <param name="parameterName">The name of the paramter that the user passed the baseUri in from.</param>
            <returns>The new UriResolver using the passed in baseUri</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.CloneWithOverrideValue(System.Uri,System.String)">
            <summary>
            Creates a new BaseUriResolver with all the same values except a new BaseUri value
            </summary>
            <param name="overrideBaseUriValue">The new BaseUri value</param>
            <param name="parameterName">The name of the paramter that the user passed the baseUri in from.</param>
            <returns>A new BaseUriResolver with the BaseUri property set to the new value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.CloneWithOverrideValue(System.Func{System.String,System.Uri})">
            <summary>
            Creates a new BaseUriResolver with all the same values except a new ResolveEntitySet value
            </summary>
            <param name="overrideResolveEntitySetValue">The new BaseUri value</param>
            <returns>A new BaseUriResolver with the ResolveEntitySet property set to the new value.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.GetEntitySetUri(System.String)">
            <summary>base uri with no trailing slash</summary>
            <param name="entitySetName">the name of the entitSet whose Uri will be retrieved.</param>
            <returns>the baseUri ended with a slash for the entitySetName passed in.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.GetBaseUriWithSlash">
            <summary>
            returns the BaseUri property followed by a slash.
             
            if the BaseUri property is null, an InvalidOperationException is thrown
            </summary>
            <returns>The BaseUri property with a slash.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.GetOrCreateAbsoluteUri(System.Uri)">
            <summary>
            If necessary will create an absolute uri by combining the BaseUri and requestUri
            </summary>
            <param name="requestUri">The uri specified by the user</param>
            <returns>An absolute Uri based on the requestUri and if nessesary the BaseUri</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.ConvertToAbsoluteAndValidateBaseUri(System.Uri@,System.String)">
            <summary>
            Converts the baseUri passed in to an absolute Uri and then validates that it is
            usable by the system.
            </summary>
            <param name="baseUri">The user provided baseUri value.</param>
            <param name="parameterName">The name of the paramter that the user passed the baseUri in from.</param>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.IsValidBaseUri(System.Uri)">
            <summary>
            Validates that the passed in BaseUri
            </summary>
            <param name="baseUri">the baseUri that needs to be validated</param>
            <returns>True if the baseUri is valid, otherwise false</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.ConvertToAbsoluteUri(System.Uri)">
            <summary>
            Updates a relative silverlight uri to an absolute uri
            </summary>
            <param name="baseUri">the uri passed by the client</param>
            <returns>the updated absolute uri</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.ForceNonSlashTerminatedUri(System.Uri)">
            <summary>
            Returns a Uri that is not slash terminated
             
            Will be the passed in one if it is slash termination free, or a new one
            if the passed in one is slash terminated.
            </summary>
            <param name="uri">The Uri to be un slash terminated</param>
            <returns>A slash termination free version of the passed in Uri.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.ForceSlashTerminatedUri(System.Uri)">
            <summary>
            Returns a slash terminated Uri.
             
            Will be the passed in one if it is already slash terminated, or a new one
            if the passed in one is not slash terminated.
            </summary>
            <param name="uri">The Uri to be slash terminated</param>
            <returns>A slash terminated version of the passed in Uri.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.GetBaseUriWithSlash(System.Func{System.String})">
            <summary>
            returns the BaseUri property followed by a slash.
             
            if the BaseUri property is null, an InvalidOperationException is thrown
            </summary>
            <param name="getErrorMessage">
            Returns the error message to use if the BaseUri is not available. Using a function so we only have to
            look up the resource if an error is actually thrown;
            </param>
            <returns>The BaseUri property with a slash.</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriResolver.GetEntitySetUriFromResolver(System.String)">
            <summary>
            Gets a Uri from the ResolveEntitySet property if available
            </summary>
            <param name="entitySetName">The name of the entity set to resolve to a URI</param>
            <returns>An absolute URI for the entitySet or null</returns>
        </member>
        <member name="P:System.Data.Services.Client.UriResolver.ResolveEntitySet">
            <summary>Gets the ResolveEntitySet value.</summary>
        </member>
        <member name="P:System.Data.Services.Client.UriResolver.RawBaseUriValue">
            <summary>
            This property returns the baseUri value with no validation at all
             
            NOTE: this property should only be used to show the user what the BaseUri value is, all
                  other access should go through the GetBaseUriWithSlash() method
            </summary>
            <value> the baseUri value </value>
        </member>
        <member name="P:System.Data.Services.Client.UriResolver.BaseUriOrNull">
            <summary>
            Gets the base URI of the resolver regardless of whether or not it is null.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.UriUtil">
            <summary>
            static utility functions for uris
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UriUtil.ForwardSlash">
            <summary>forward slash char array for triming uris</summary>
        </member>
        <member name="M:System.Data.Services.Client.UriUtil.UriToString(System.Uri)">
            <summary>
            Turn Uri instance into string representation
            This is needed because Uri.ToString unescapes the string
            </summary>
            <param name="uri">The uri instance</param>
            <returns>The string representation of the uri</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriUtil.CreateUri(System.String,System.UriKind)">
            <summary>new Uri(string uriString, UriKind uriKind)</summary>
            <param name="value">value</param>
            <param name="kind">kind</param>
            <returns>new Uri(value, kind)</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriUtil.CreateUri(System.Uri,System.Uri)">
            <summary>new Uri(Uri baseUri, Uri requestUri)</summary>
            <param name="baseUri">baseUri</param>
            <param name="requestUri">relativeUri</param>
            <returns>new Uri(baseUri, requestUri)</returns>
        </member>
        <member name="M:System.Data.Services.Client.UriUtil.AppendBaseUriAndRelativeUri(System.Uri,System.Uri)">
            <summary>
            Appends the absolute baseUri with the relativeUri to create a new absolute uri
            </summary>
            <param name="baseUri">An absolute Uri</param>
            <param name="relativeUri">A relative Uri</param>
            <returns>An absolute Uri that is the combination of the base and relative Uris passed in.</returns>
        </member>
        <member name="T:System.Data.Services.Common.DataServiceUrlConventions">
            <summary>
            Component for controlling what convention set is used for generating URLs.
            </summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceUrlConventions.DefaultInstance">
            <summary>Singleton instance of the default conventions.</summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceUrlConventions.KeyAsSegmentInstance">
            <summary>Singleton instance of the key-as-segment conventions.</summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceUrlConventions.keySerializer">
            <summary>The key serializer to use.</summary>
        </member>
        <member name="F:System.Data.Services.Common.DataServiceUrlConventions.urlConvention">
            <summary>The url convention to use.</summary>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceUrlConventions.#ctor(System.Data.Services.Client.UrlConvention)">
            <summary>
            Prevents a default instance of the <see cref="T:System.Data.Services.Common.DataServiceUrlConventions"/> class from being created.
            </summary>
            <param name="urlConvention">The url convention to use.</param>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceUrlConventions.AppendKeyExpression(Microsoft.Data.Edm.Values.IEdmStructuredValue,System.Text.StringBuilder)">
            <summary>
            Appends the key expression for the given entity to the given <see cref="T:System.Text.StringBuilder"/>
            </summary>
            <param name="entity">The entity to build the key expression from.</param>
            <param name="builder">The builder to append onto.</param>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceUrlConventions.AppendKeyExpression``1(System.Collections.Generic.ICollection{``0},System.Func{``0,System.String},System.Func{``0,System.Object},System.Text.StringBuilder)">
            <summary>
            Appends the key expression for the given entity to the given <see cref="T:System.Text.StringBuilder"/>
            </summary>
            <typeparam name="T">The type of the properties.</typeparam>
            <param name="keyProperties">The properties of the key.</param>
            <param name="getPropertyName">Delegate to get the name of a property.</param>
            <param name="getValueForProperty">Delegate to get the value of a property.</param>
            <param name="builder">The builder to append onto.</param>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceUrlConventions.AddRequiredHeaders(System.Data.Services.Client.HeaderCollection)">
            <summary>
            Adds the required headers for the url convention.
            </summary>
            <param name="requestHeaders">The request headers to add to.</param>
        </member>
        <member name="M:System.Data.Services.Common.DataServiceUrlConventions.GetPropertyValue(Microsoft.Data.Edm.Values.IEdmPropertyValue,Microsoft.Data.Edm.IEdmTypeReference)">
            <summary>
            Gets the raw CLR value for the given <see cref="T:Microsoft.Data.Edm.Values.IEdmPropertyValue"/>.
            </summary>
            <param name="property">The property to get the value for.</param>
            <param name="type">The type which declared the property.</param>
            <returns>The raw CLR value of the property.</returns>
        </member>
        <member name="P:System.Data.Services.Common.DataServiceUrlConventions.Default">
            <summary>
            An instance of <see cref="T:System.Data.Services.Common.DataServiceUrlConventions"/> which uses default URL conventions. Specifically, this instance will produce keys that use parentheses like "Customers('ALFKI')".
            </summary>
        </member>
        <member name="P:System.Data.Services.Common.DataServiceUrlConventions.KeyAsSegment">
            <summary>
            An instance of <see cref="T:System.Data.Services.Common.DataServiceUrlConventions"/> which uses key-as-segment URL conventions. Specifically, this instance will produce keys that use segments like "Customers/ALFKI".
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.Util">
            <summary>
            static utility function
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.VersionSuffix">
            <summary>
            String Suffix on outgoing version numbers
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.CodeGeneratorToolName">
            <summary>Tool name for the GeneratedCode attribute used by Astoria CodeGen</summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.LoadPropertyMethodName">
            <summary>Method name for the LoadProperty method.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.ExecuteMethodName">
            <summary>Method name for the Execute method.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.ExecuteMethodNameForVoidResults">
            <summary>Method name for the Async Execute method overload which expects void result.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.SaveChangesMethodName">
            <summary>Method name for the SaveChanges method.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.DataServiceVersionEmpty">
            <summary>
            Empty Data Service Version - represents a blank DSV header
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.DataServiceVersion1">
            <summary>
            Data Service Version 1
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.DataServiceVersion2">
            <summary>
            Data Service Version 2
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.DataServiceVersion3">
            <summary>
            Data Service Version 3
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.SupportedResponseVersions">
            <summary>
            Data service versions supported on the client
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Util.whitespaceForTracing">
            <summary>
            static char[] for indenting whitespace when tracing xml
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Util.GetVersionFromMaxProtocolVersion(System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>
            Converts the DataServiceProtocolVersion to a Version instance.
            </summary>
            <param name="maxProtocolVersion">The max protocol version value.</param>
            <returns>The same version expressed as Version instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.DebugInjectFault(System.String)">
            <summary>
            DebugInjectFault is a test hook to inject faults in specific locations. The string is the ID for the location
            </summary>
            <param name="state">The injector state parameter</param>
        </member>
        <member name="M:System.Data.Services.Client.Util.CheckArgumentNull``1(``0,System.String)">
            <summary>
            Checks the argument value for null and throw ArgumentNullException if it is null
            </summary>
            <typeparam name="T">type of the argument to prevent accidental boxing of value types</typeparam>
            <param name="value">argument whose value needs to be checked</param>
            <param name="parameterName">name of the argument</param>
            <exception cref="T:System.ArgumentNullException">if value is null</exception>
            <returns>value</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.CheckArgumentNullAndEmpty(System.String,System.String)">
            <summary>
            Checks the string value is not empty
            </summary>
            <param name="value">value to check </param>
            <param name="parameterName">parameterName of public function</param>
            <exception cref="T:System.ArgumentNullException">if value is null</exception>
            <exception cref="T:System.ArgumentException">if value is empty</exception>
        </member>
        <member name="M:System.Data.Services.Client.Util.CheckArgumentNotEmpty(System.String,System.String)">
            <summary>
            Checks the string value is not empty, but allows it to be null
            </summary>
            <param name="value">value to check</param>
            <param name="parameterName">parameterName of public function</param>
            <exception cref="T:System.ArgumentException">if value is empty</exception>
        </member>
        <member name="M:System.Data.Services.Client.Util.CheckArgumentNotEmpty``1(``0[],System.String)">
            <summary>
            Checks the array value is not empty
            </summary>
            <typeparam name="T">type of the argument to prevent accidental boxing of value types</typeparam>
            <param name="value">value to check </param>
            <param name="parameterName">parameterName of public function</param>
            <exception cref="T:System.ArgumentNullException">if value is null</exception>
            <exception cref="T:System.ArgumentException">if value is empty or contains null elements</exception>
        </member>
        <member name="M:System.Data.Services.Client.Util.CheckEnumerationValue(System.Data.Services.Client.MergeOption,System.String)">
            <summary>
            Validate MergeOption
            </summary>
            <param name="value">option to validate</param>
            <param name="parameterName">name of the parameter being validated</param>
            <exception cref="T:System.ArgumentOutOfRangeException">if option is not valid</exception>
            <returns>option</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.CheckEnumerationValue(System.Data.Services.Common.DataServiceProtocolVersion,System.String)">
            <summary>
            Validate MaxProtocolVersion
            </summary>
            <param name="value">version to validate</param>
            <param name="parameterName">name of the parameter being validated</param>
            <exception cref="T:System.ArgumentOutOfRangeException">if version is not valid</exception>
            <returns>version</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.CheckEnumerationValue(System.Data.Services.Client.HttpStack,System.String)">
            <summary>
            Validate HttpStack
            </summary>
            <param name="value">option to validate</param>
            <param name="parameterName">name of the parameter being validated</param>
            <exception cref="T:System.ArgumentOutOfRangeException">if option is not valid</exception>
            <returns>option</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.GetWhitespaceForTracing(System.Int32)">
            <summary>
            get char[] for indenting whitespace when tracing xml
            </summary>
            <param name="depth">how many characters to trace</param>
            <returns>char[]</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.Dispose``1(``0@)">
            <summary>dispose of the object and set the reference to null</summary>
            <typeparam name="T">type that implements IDisposable</typeparam>
            <param name="disposable">object to dispose</param>
        </member>
        <member name="M:System.Data.Services.Client.Util.Dispose``1(``0)">
            <summary>dispose of the object</summary>
            <typeparam name="T">type that implements IDisposable</typeparam>
            <param name="disposable">object to dispose</param>
        </member>
        <member name="M:System.Data.Services.Client.Util.IsKnownClientExcption(System.Exception)">
            <summary>
            Checks whether the exception type is one of the DataService*Exception
            </summary>
            <param name="ex">exception to test</param>
            <returns>true if the exception type is one of the DataService*Exception</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.NullCheck``1(``0,System.Data.Services.Client.InternalError)">
            <summary>validate value is non-null</summary>
            <typeparam name="T">type of value</typeparam>
            <param name="value">value</param>
            <param name="errorcode">error code to throw if null</param>
            <returns>the non-null value</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.DoesNullAttributeSayTrue(System.Xml.XmlReader)">
            <summary>
            check the atom:null="true" attribute
            </summary>
            <param name="reader">XmlReader</param>
            <returns>true of null is true</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.SetNextLinkForCollection(System.Object,System.Data.Services.Client.DataServiceQueryContinuation)">
            <summary>Set the continuation for the following results for a collection.</summary>
            <param name="collection">The collection to set the links to</param>
            <param name="continuation">The continuation for the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.Util.IsNullableType(System.Type)">
            <summary>
            Determines if the current type is nullable or not
            </summary>
            <param name="t">The type parameter.</param>
            <returns>true if its nullable false otherwise</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.ActivatorCreateInstance(System.Type,System.Object[])">
            <summary>
            Similar to Activator.CreateInstance, but uses LCG to avoid
            more stringent Reflection security constraints.in Silverlight
            </summary>
            <param name="type">Type to create.</param>
            <param name="arguments">Arguments.</param>
            <returns>The newly instantiated object.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.ConstructorInvoke(System.Reflection.ConstructorInfo,System.Object[])">
            <summary>
            Similar to ConstructorInfo.Invoke, but uses LCG to avoid
            more stringent Reflection security constraints in Silverlight
            </summary>
            <param name="constructor">Constructor to invoke.</param>
            <param name="arguments">Arguments.</param>
            <returns>The newly instantiated object.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.IsFlagSet(System.Data.Services.Client.SaveChangesOptions,System.Data.Services.Client.SaveChangesOptions)">
            <summary>
            checks whether the given flag is set on the options
            </summary>
            <param name="options">options as specified by the user.</param>
            <param name="flag">whether the given flag is set on the options</param>
            <returns>true if the given flag is set, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.IsBatch(System.Data.Services.Client.SaveChangesOptions)">
            <summary>
            checks whether any batch flag is set on the options
            </summary>
            <param name="options">options as specified by the user.</param>
            <returns>true if the given flag is set, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.IsBatchWithSingleChangeset(System.Data.Services.Client.SaveChangesOptions)">
            <summary>
            checks whether the batch flag is set on the options for the single changeset
            </summary>
            <param name="options">options as specified by the user.</param>
            <returns>true if the given flag is set, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.IsBatchWithIndependentOperations(System.Data.Services.Client.SaveChangesOptions)">
            <summary>
            checks whether the batch flag with independent Operation per change set is set
            </summary>
            <param name="options">options as specified by the user.</param>
            <returns>true if the given flag is set, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.IncludeLinkState(System.Data.Services.Client.EntityStates)">
            <summary>modified or unchanged</summary>
            <param name="x">state to test</param>
            <returns>true if modified or unchanged</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.TraceElement(System.Xml.XmlReader,System.IO.TextWriter)">
            <summary>
            trace Element node
            </summary>
            <param name="reader">XmlReader</param>
            <param name="writer">TextWriter</param>
        </member>
        <member name="M:System.Data.Services.Client.Util.TraceEndElement(System.Xml.XmlReader,System.IO.TextWriter,System.Boolean)">
            <summary>
            trace EndElement node
            </summary>
            <param name="reader">XmlReader</param>
            <param name="writer">TextWriter</param>
            <param name="indent">indent or not</param>
        </member>
        <member name="M:System.Data.Services.Client.Util.TraceText(System.IO.TextWriter,System.String)">
            <summary>
            trace string value
            </summary>
            <param name="writer">TextWriter</param>
            <param name="value">value</param>
        </member>
        <member name="M:System.Data.Services.Client.Util.GetEnumerable``1(System.Collections.IEnumerable,System.Func{System.Object,``0})">
            <summary>
            Converts the given IEnumerable into IEnumerable<typeparamref name="T"/>
            </summary>
            <typeparam name="T">Type parameter.</typeparam>
            <param name="enumerable">IEnumerable which contains the list of the objects that needs to be converted.</param>
            <param name="valueConverter">Delegate to use to convert the value.</param>
            <returns>An instance of IEnumerable<typeparamref name="T"/> which contains the converted values.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Util.ToVersion(System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>Given a <see cref="T:System.Data.Services.Common.DataServiceProtocolVersion"/> enumeration returns the <see cref="T:System.Version"/> instance with the same version number.</summary>
            <param name="protocolVersion">The protocol version enum value to convert.</param>
            <returns>The version instance with the version number for the specified protocol version.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Util.ValidatedNotNullAttribute">
            <summary>
            A workaround to a problem with FxCop which does not recognize the CheckArgumentNotNull method
            as the one which validates the argument is not null.
            </summary>
            <remarks>This has been suggested as a workaround in msdn forums by the VS team. Note that even though this is production code
            the attribute has no effect on anything else.</remarks>
        </member>
        <member name="T:System.Data.Services.Client.UndeclaredPropertyBehavior">
            <summary>
            Indicates DataServiceContext's behavior on undeclared property in entity/complex value.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UndeclaredPropertyBehavior.None">
            <summary>
            The default value, implies respecting DataServiceContext.IgnoreMissingProperties boolean.
            Note: IgnoreMissingProperties==false is to throw exception on undeclared property in entity.
            IgnoreMissingProperties==true is to read undeclared property in entity.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UndeclaredPropertyBehavior.Ignore">
            <summary>
            Sliently ignores undeclared property.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.UndeclaredPropertyBehavior.Support">
            <summary>
            Supports undeclared property.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceContext">
            <summary>
            The <see cref="T:System.Data.Services.Client.DataServiceContext" /> represents the runtime context of the data service.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.ServiceRootParameterName">
            <summary>
            string constant for the 'serviceRoot' parameter to UriResolver
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.MaxProtocolVersionAsVersion">
            <summary>Same version as <see cref="F:System.Data.Services.Client.DataServiceContext.maxProtocolVersion"/> but stored as instance of <see cref="T:System.Version"/> for easy comparisons.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.model">
            <summary>The client model for the current context instance.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.formatTracker">
            <summary>The tracker for user-specified format information.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.maxProtocolVersion">
            <summary>The maximum protocol version the client should support (send and receive).</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.entityTracker">
            <summary>
            Class which tracks all the entities and links for the given context
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.addAndUpdateResponsePreference">
            <summary>
            The response preference for add and update operations
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.baseUriResolver">
            <summary>The resolver for baseUris</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.credentials">
            <summary>Authentication interface for retrieving credentials for Web client authentication.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.dataNamespace">
            <summary>Override the namespace used for the data parts of the ATOM entries</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.resolveName">
            <summary>resolve type from a typename</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.resolveType">
            <summary>resolve typename from a type</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.timeout">
            <summary>time-out value in seconds, 0 for default</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.postTunneling">
            <summary>whether to use post-tunneling for PUT/DELETE</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.ignoreMissingProperties">
            <summary>Options when deserializing properties to the target type.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.undeclaredPropertyBehavior">
            <summary>Options on top of ignoreMissingProperties.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.mergeOption">
            <summary>Used to specify a value synchronization strategy.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.saveChangesDefaultOptions">
            <summary>Default options to be used while doing savechanges.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.typeScheme">
            <summary>Override the namespace used for the scheme in the category for ATOM entries.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.ignoreResourceNotFoundException">
            <summary>Client will ignore 404 resource not found exception and return an empty set when this is set to true</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.urlConventions">
            <summary>The URL conventions to use.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.httpStack">
            <summary>The HTTP stack to use for requests.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.sendRequest">
            <summary>
            Test hook which gets called after the HttpWebRequest has been created and all headers have been set.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.getRequestWrappingStream">
            <summary>
            Test hook which gets called after we call HttpWebRequest.GetRequestStream, so that the test code can wrap the stream and see what gets written to it.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.sendResponse">
            <summary>
            Test hook which gets called after the HttpWebResponse is received.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.getResponseWrappingStream">
            <summary>
            Test hook which gets called after we call HttpWebRequest.GetResponseStream, so that the test code can wrap the stream and see what gets read from it.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.applyingChanges">
            <summary>
            A flag indicating if the data service context is applying changes
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.#ctor">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceContext" /> class.</summary>
            <remarks>It is expected that the BaseUri or ResolveEntitySet properties will be set before using the newly created context.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.#ctor(System.Uri)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceContext" /> class with the specified <paramref name="serviceRoot" />.</summary>
            <param name="serviceRoot">An absolute URI that identifies the root of a data service.</param>
            <exception cref="T:System.ArgumentNullException">When the <paramref name="serviceRoot" /> is null.</exception>
            <exception cref="T:System.ArgumentException">If the <paramref name="serviceRoot" /> is not an absolute URI -or-If the <paramref name="serviceRoot" /> is a well formed URI without a query or query fragment.</exception>
            <remarks>
            The library expects the Uri to point to the root of a data service,
            but does not issue a request to validate it does indeed identify the root of a service.
            If the Uri does not identify the root of the service, the behavior of the client library is undefined.
            A Uri provided with a trailing slash is equivalent to one without such a trailing character.
            With Silverlight, the <paramref name="serviceRoot"/> can be a relative Uri
            that will be combined with System.Windows.Browser.HtmlPage.Document.DocumentUri.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.#ctor(System.Uri,System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>Initializes a new instance of the <see cref="T:System.Data.Services.Client.DataServiceContext" /> class with the specified <paramref name="serviceRoot" /> and targeting the specific <paramref name="maxProtocolVersion" />.</summary>
            <param name="serviceRoot">An absolute URI that identifies the root of a data service.</param>
            <param name="maxProtocolVersion">A <see cref="T:System.Data.Services.Common.DataServiceProtocolVersion" /> value that is the maximum protocol version that the client understands.</param>
            <remarks>
            The library expects the Uri to point to the root of a data service,
            but does not issue a request to validate it does indeed identify the root of a service.
            If the Uri does not identify the root of the service, the behavior of the client library is undefined.
            A Uri provided with a trailing slash is equivalent to one without such a trailing character.
            With Silverlight, the <paramref name="serviceRoot"/> can be a relative Uri
            that will be combined with System.Windows.Browser.HtmlPage.Document.DocumentUri.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.#ctor(System.Uri,System.Data.Services.Common.DataServiceProtocolVersion,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Instantiates a new context with the specified <paramref name="serviceRoot"/> Uri.
            The library expects the Uri to point to the root of a data service,
            but does not issue a request to validate it does indeed identify the root of a service.
            If the Uri does not identify the root of the service, the behavior of the client library is undefined.
            </summary>
            <param name="serviceRoot">
            An absolute, well formed http or https URI without a query or fragment which identifies the root of a data service.
            A Uri provided with a trailing slash is equivalent to one without such a trailing character
            </param>
            <param name="maxProtocolVersion">max protocol version that the client understands.</param>
            <param name="model">The client edm model to use. Provided for testability.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">If the <paramref name="maxProtocolVersion"/> is not a valid value.</exception>
            <remarks>
            With Silverlight, the <paramref name="serviceRoot"/> can be a relative Uri
            that will be combined with System.Windows.Browser.HtmlPage.Document.DocumentUri.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetEntityDescriptor(System.Object)">
            <summary>Gets the <see cref="T:System.Data.Services.Client.EntityDescriptor" /> for the supplied entity object.</summary>
            <returns>The <see cref="T:System.Data.Services.Client.EntityDescriptor" /> instance for the <paramref name="entity" />, or null if an <see cref="T:System.Data.Services.Client.EntityDescriptor" /> does not exist for the object.</returns>
            <param name="entity">The object for which to return the entity descriptor.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetLinkDescriptor(System.Object,System.String,System.Object)">
            <summary>Gets the <see cref="T:System.Data.Services.Client.LinkDescriptor" /> for a specific link that defines the relationship between two entities.</summary>
            <returns>The <see cref="T:System.Data.Services.Client.LinkDescriptor" /> instance for the specified relationship, or null if a <see cref="T:System.Data.Services.Client.LinkDescriptor" /> does not exist for the relationship.</returns>
            <param name="source">Source object in the link</param>
            <param name="sourceProperty">The name of the navigation property on the <paramref name="source" /> object that returns the related object.</param>
            <param name="target">The related entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.CancelRequest(System.IAsyncResult)">
            <summary>Attempts to cancel the operation that is associated with the supplied <see cref="T:System.IAsyncResult" /> object.</summary>
            <param name="asyncResult">The <see cref="T:System.IAsyncResult" /> object from the operation being canceled.</param>
            <remarks>DataServiceContext is not safe to use until asyncResult.IsCompleted is true.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.CreateQuery``1(System.String)">
            <summary>Creates a data service query for data of a specified generic type.</summary>
            <returns>A new <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> instance that represents a data service query.</returns>
            <param name="entitySetName">A string that resolves to a URI.</param>
            <typeparam name="T">The type returned by the query</typeparam>
            <remarks>create a query based on (BaseUri + relativeUri)</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetMetadataUri">
            <summary>Gets a URI of the location of .edmx metadata.</summary>
            <returns>A URI that identifies the location of the metadata description, in .edmx format, for the data service identified by the base URI that is passed to the constructor.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.AsyncCallback,System.Object)">
            <summary>Asynchronously loads the value of the specified property from the data service.</summary>
            <returns>An IAsyncResult that represents the status of the asynchronous operation.</returns>
            <param name="entity">The entity that contains the property to load.</param>
            <param name="propertyName">The name of the property on the specified entity to load.</param>
            <param name="callback">The delegate called when a response to the request is received.</param>
            <param name="state">The user-defined state object that is used to pass context data to the callback method.</param>
            <remarks>actually doesn't modify the property until EndLoadProperty is called.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.Uri,System.AsyncCallback,System.Object)">
            <summary>Asynchronously loads a page of related entities from the data service by using the supplied next link URI.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
            <param name="entity">The entity that contains the property to load.</param>
            <param name="propertyName">The name of the property of the specified entity to load.</param>
            <param name="nextLinkUri">The URI used to load the next results page.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.Data.Services.Client.DataServiceQueryContinuation,System.AsyncCallback,System.Object)">
            <summary>Asynchronously loads the next page of related entities from the data service by using the supplied query continuation object.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the operation.</returns>
            <param name="entity">The entity that contains the property to load.</param>
            <param name="propertyName">The name of the property of the specified entity to load.</param>
            <param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of related entity data to return from the data service.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EndLoadProperty(System.IAsyncResult)">
            <summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginLoadProperty(System.Object,System.String,System.AsyncCallback,System.Object)" /> operation.</summary>
            <returns>The response to the load operation.</returns>
            <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty(System.Object,System.String)">
             <summary>Loads deferred content for a specified property from the data service.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
             <returns>The response to the load operation.</returns>
             <param name="entity">The entity that contains the property to load.</param>
             <param name="propertyName">The name of the property of the specified entity to load.</param>
             <remarks>
             If <paramref name="entity"/> is in in detached or added state, this method will throw an InvalidOperationException
             since there is nothing it can load from the server.
             
             If <paramref name="entity"/> is in unchanged or modified state, this method will load its collection or
             reference elements as unchanged with unchanged bindings.
             
             If <paramref name="entity"/> is in deleted state, this method will load the entities linked to by its collection or
             reference property in the unchanged state with bindings in the deleted state.
             </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty(System.Object,System.String,System.Uri)">
             <summary>Loads a page of related entities by using the supplied next link URI.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
             <returns>An instance of <see cref="T:System.Data.Services.Client.QueryOperationResponse`1" /> that contains the results of the request.</returns>
             <param name="entity">The entity that contains the property to load.</param>
             <param name="propertyName">The name of the property of the specified entity to load.</param>
             <param name="nextLinkUri">The URI that is used to load the next results page.</param>
             <exception cref="T:System.InvalidOperationException">When <paramref name="entity" /> is in a <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.</exception>
             <remarks>
             If <paramref name="entity"/> is in in detached or added state, this method will throw an InvalidOperationException
             since there is nothing it can load from the server.
             
             If <paramref name="entity"/> is in unchanged or modified state, this method will load its collection or
             reference elements as unchanged with unchanged bindings.
             
             If <paramref name="entity"/> is in deleted state, this method will load the entities linked to by its collection or
             reference property in the unchanged state with bindings in the deleted state.
             </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty(System.Object,System.String,System.Data.Services.Client.DataServiceQueryContinuation)">
             <summary>Loads the next page of related entities from the data service by using the supplied query continuation object.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
             <returns>The response that contains the next page of related entity data.</returns>
             <param name="entity">The entity that contains the property to load.</param>
             <param name="propertyName">The name of the property of the specified entity to load.</param>
             <param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of related entities to load from the data service.</param>
             <exception cref="T:System.InvalidOperationException">When <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.</exception>
             <remarks>
             If <paramref name="entity"/> is in in detached or added state, this method will throw an InvalidOperationException
             since there is nothing it can load from the server.
             
             If <paramref name="entity"/> is in unchanged or modified state, this method will load its collection or
             reference elements as unchanged with unchanged bindings.
             
             If <paramref name="entity"/> is in deleted state, this method will load the entities linked to by its collection or
             reference property in the unchanged state with bindings in the deleted state.
             </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.LoadProperty``1(System.Object,System.String,System.Data.Services.Client.DataServiceQueryContinuation{``0})">
             <summary>Loads the next page of related entities from the data service by using the supplied generic query continuation object.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
             <returns>The response that contains the next page of related entity data.</returns>
             <param name="entity">The entity that contains the property to load.</param>
             <param name="propertyName">The name of the property of the specified entity to load.</param>
             <param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of related entities to load from the data service.</param>
             <typeparam name="T">Element type of collection to load.</typeparam>
             <exception cref="T:System.InvalidOperationException">When <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.</exception>
             <remarks>
             If <paramref name="entity"/> is in in detached or added state, this method will throw an InvalidOperationException
             since there is nothing it can load from the server.
             
             If <paramref name="entity"/> is in unchanged or modified state, this method will load its collection or
             reference elements as unchanged with unchanged bindings.
             
             If <paramref name="entity"/> is in deleted state, this method will load the entities linked to by its collection or
             reference property in the unchanged state with bindings in the deleted state.
             </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetReadStreamUri(System.Object)">
            <summary>Gets the URI that is used to return a binary data stream.</summary>
            <returns>The read URI of the binary data stream.</returns>
            <param name="entity">The entity that has a related binary stream to retrieve. </param>
            <exception cref="T:System.ArgumentNullException">If the entity specified is null.</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.</exception>
            <remarks>If the specified entity is a Media Link Entry, this method will return an URI which can be used to access the content of the Media Resource. This URI should only be used to GET/Read the content of the MR. It may not respond to POST/PUT/DELETE requests.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetReadStreamUri(System.Object,System.String)">
            <summary>Gets the URI that is used to return a named binary data stream.</summary>
            <returns>The read URI of the binary data stream.</returns>
            <param name="entity">The entity that has the named binary data stream to retrieve.</param>
            <param name="name">The name of the stream to request.</param>
            <remarks>If the specified entity has a stream with the given name, this method will return an URI which can be used to access the content of the stream. This URI should only be used to GET/Read the content of the stream. It may not respond to POST/PUT/DELETE requests.</remarks>
            <exception cref="T:System.ArgumentNullException">If the entity specified is null.</exception>
            <exception cref="T:System.ArgumentException">If the name parameter is empty or the entity specified is not being tracked.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginGetReadStream(System.Object,System.Data.Services.Client.DataServiceRequestArgs,System.AsyncCallback,System.Object)">
            <summary>Asynchronously gets the binary data stream that belongs to the specified entity, by using the specified message headers.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
            <param name="entity">The entity that has a the binary data stream to retrieve. </param>
            <param name="args">Instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
            <exception cref="T:System.ArgumentNullException">Any of the parameters supplied to the method is null.</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related binary data stream.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginGetReadStream(System.Object,System.String,System.Data.Services.Client.DataServiceRequestArgs,System.AsyncCallback,System.Object)">
            <summary>Asynchronously gets a named binary data stream that belongs to the specified entity, by using the specified message headers.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
            <param name="entity">The entity that has the binary data stream to retrieve.</param>
            <param name="name">The name of the binary stream to request.</param>
            <param name="args">Instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EndGetReadStream(System.IAsyncResult)">
            <summary>Called to complete the asynchronous operation of retrieving a binary data stream.</summary>
            <returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> which contains the response stream along with its metadata.</returns>
            <param name="asyncResult">The result from the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginGetReadStream(System.Object,System.Data.Services.Client.DataServiceRequestArgs,System.AsyncCallback,System.Object)" /> operation that contains the binary data stream.</param>
            <remarks>The method will block if the request have not finished yet.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object)">
            <summary>Gets the binary data stream that belongs to the specified entity.</summary>
            <returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> that represents the response.</returns>
            <param name="entity">The entity that has the binary stream to retrieve. </param>
            <exception cref="T:System.ArgumentNullException">The<paramref name=" entity" /> is null.</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related binary stream.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object,System.String)">
            <summary>Gets the binary data stream that belongs to the specified entity, by using the specified Content-Type message header.</summary>
            <returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> that represents the response.</returns>
            <param name="entity">The entity that has the binary data stream to retrieve. </param>
            <param name="acceptContentType">The Content-Type of the binary data stream requested from the data service, specified in the Accept header.</param>
            <exception cref="T:System.ArgumentNullException">
              <paramref name="entity" /> is null.-or- <paramref name="acceptContentType" /> is null.</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related stream.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object,System.Data.Services.Client.DataServiceRequestArgs)">
            <summary>Gets binary data stream for the specified entity by using the specified message headers.</summary>
            <returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse" /> that represents the response.</returns>
            <param name="entity">The entity that has the binary stream to retrieve. </param>
            <param name="args">Instance of <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
            <exception cref="T:System.ArgumentNullException">
              <paramref name="entity" /> is null.-or- <paramref name="args" /> is null.</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" />.-or-The <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-The <paramref name="entity" /> is not a Media Link Entry and does not have a related binary stream.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetReadStream(System.Object,System.String,System.Data.Services.Client.DataServiceRequestArgs)">
            <summary>Gets a named binary data stream that belongs to the specified entity, by using the specified Content-Type message header.</summary>
            <returns>An instance of <see cref="T:System.Data.Services.Client.DataServiceStreamResponse"/> that represents the response.</returns>
            <param name="entity">The entity that has the binary data stream to retrieve.</param>
            <param name="name">The name of the binary stream to request.</param>
            <param name="args">Instance of <see cref="T:System.Data.Services.Client.DataServiceRequestArgs"/> class that contains settings for the HTTP request message.</param>
            <exception cref="T:System.ArgumentNullException">Either entity or args parameters are null.</exception>
            <exception cref="T:System.ArgumentException">The specified entity is either not tracked, is in the added state.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.IO.Stream,System.Boolean,System.String,System.String)">
            <summary>Sets a binary data stream that belongs to the specified entity, with the specified Content-Type and Slug headers in the request message.</summary>
            <param name="entity">The entity to which the data stream belongs.</param>
            <param name="stream">The <see cref="T:System.IO.Stream" /> from which to read the binary data. </param>
            <param name="closeStream">A <see cref="T:System.Boolean" /> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method is completed. </param>
            <param name="contentType">The Content-Type header value for the request message.</param>
            <param name="slug">The Slug header value for the request message.</param>
            <exception cref="T:System.ArgumentNullException">Any of the parameters supplied to the method are null.</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not being tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" /> instance. -or-The entity has the <see cref="T:System.Data.Services.Client.MediaEntryAttribute" /> applied. </exception>
            <remarks>Calling this method marks the entity as media link resource (MLE). It also marks the entity as modified
            so that it will participate in the next call to SaveChanges.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.IO.Stream,System.Boolean,System.Data.Services.Client.DataServiceRequestArgs)">
            <summary>Sets a binary data stream for the specified entity, with the specified headers in the request message.</summary>
            <param name="entity">The entity to which the binary stream belongs.</param>
            <param name="stream">The <see cref="T:System.IO.Stream" /> from which to read the binary data. </param>
            <param name="closeStream">A <see cref="T:System.Boolean" /> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method is completed. </param>
            <param name="args">An instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs" /> class that contains settings for the HTTP request message.</param>
            <exception cref="T:System.ArgumentNullException">Any of the parameters supplied to the method are null.</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="entity" /> is not being tracked by this <see cref="T:System.Data.Services.Client.DataServiceContext" /> instance. -or-The <paramref name="entity" /> has the <see cref="T:System.Data.Services.Client.MediaEntryAttribute" /> applied. </exception>
            <remarks>Calling this method marks the entity as media link resource (MLE). It also marks the entity as modified
            so that it will participate in the next call to SaveChanges.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.String,System.IO.Stream,System.Boolean,System.String)">
            <summary>Sets a binary data stream for the specified entity.</summary>
            <param name="entity">The entity to which the binary stream belongs.</param>
            <param name="name">The name of the binary stream to save.</param>
            <param name="stream">The <see cref="T:System.IO.Stream"/> from which to read the binary data.</param>
            <param name="closeStream">A <see cref="T:System.Boolean"/> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges"/> method is completed.</param>
            <param name="contentType">The Content-Type header value for the request message.</param>
            <exception cref="T:System.ArgumentException">The entity is not being tracked or name is an empty string.</exception>
            <exception cref="T:System.ArgumentNullException">Any of the arguments is null.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SetSaveStream(System.Object,System.String,System.IO.Stream,System.Boolean,System.Data.Services.Client.DataServiceRequestArgs)">
            <summary>Sets a named binary data stream that belongs to the specified entity, with the specified headers in the request message.</summary>
            <param name="entity">The entity to which the binary stream belongs.</param>
            <param name="name">The name of the binary stream to save.</param>
            <param name="stream">The <see cref="T:System.IO.Stream"/> from which to read the binary data.</param>
            <param name="closeStream">A <see cref="T:System.Boolean"/> value that determines whether the data stream is closed when the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges"/> method is completed.</param>
            <param name="args">An instance of the <see cref="T:System.Data.Services.Client.DataServiceRequestArgs"/> class that contains settings for the HTTP request message.</param>
            <remarks>Calling this method marks the entity as media link resource (MLE). It also marks the entity as modified
            so that it will participate in the next call to SaveChanges.</remarks>
            <exception cref="T:System.ArgumentException">The entity is not being tracked. The entity has the MediaEntry attribute
            marking it to use the older way of handling MRs.</exception>
            <exception cref="T:System.ArgumentNullException">Any of the arguments is null.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginExecuteBatch(System.AsyncCallback,System.Object,System.Data.Services.Client.DataServiceRequest[])">
            <summary>Asynchronously submits a group of queries as a batch to the data service.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> object that is used to track the status of the asynchronous operation. </returns>
            <param name="callback">The delegate that is called when a response to the batch request is received.</param>
            <param name="state">User-defined state object that is used to pass context data to the callback method.</param>
            <param name="queries">The array of query requests to include in the batch request.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EndExecuteBatch(System.IAsyncResult)">
            <summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginExecuteBatch(System.AsyncCallback,System.Object,System.Data.Services.Client.DataServiceRequest[])" />.</summary>
            <returns>The DataServiceResult object that indicates the result of the batch operation.</returns>
            <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ExecuteBatch(System.Data.Services.Client.DataServiceRequest[])">
            <summary>Synchronously submits a group of queries as a batch to the data service.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>The response to the batch operation.</returns>
            <param name="queries">Array of <see cref="T:System.Data.Services.Client.DataServiceRequest[]" /> objects that make up the queries.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Uri,System.AsyncCallback,System.Object)">
            <summary>Asynchronously sends the request so that this call does not block processing while waiting for the results from the service.</summary>
            <returns>An object that is used to track the status of the asynchronous operation. </returns>
            <param name="requestUri">The URI to which the query request will be sent. The URI may be any valid data service URI; it can contain $ query parameters.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
            <typeparam name="TElement">The type returned by the query.</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginExecute(System.Uri,System.AsyncCallback,System.Object,System.String,System.Data.Services.Client.OperationParameter[])">
            <summary>Asynchronously sends a request to the data service to execute a specific URI.</summary>
            <returns>The result of the operation.</returns>
            <param name="requestUri">The URI to which the query request will be sent.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
            <param name="httpMethod">The HTTP data transfer method used by the client.</param>
            <param name="operationParameters">The operation parameters used.</param>
            <remarks>
            This overload expects the <paramref name="requestUri"/> to end with a ServiceOperation
            or ServiceAction that returns void.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Uri,System.AsyncCallback,System.Object,System.String,System.Boolean,System.Data.Services.Client.OperationParameter[])">
            <summary>Asynchronously sends a request to the data service to execute a specific URI.</summary>
            <returns>The result of the operation.</returns>
            <param name="requestUri">The URI to which the query request will be sent.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
            <param name="httpMethod">The HTTP data transfer method used by the client.</param>
            <param name="singleResult">Attribute used on service operations to specify that they return a single instance of their return element.</param>
            <param name="operationParameters">The operation parameters used.</param>
            <typeparam name="TElement">The type returned by the query.</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Data.Services.Client.DataServiceQueryContinuation{``0},System.AsyncCallback,System.Object)">
            <summary>Asynchronously sends a request to the data service to retrieve the next page of data in a paged query result.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the operation.</returns>
            <param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of data to return from the data service.</param>
            <param name="callback">Delegate to invoke when results are available for client consumption.</param>
            <param name="state">User-defined state object passed to the callback.</param>
            <typeparam name="T">The type returned by the query.</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EndExecute``1(System.IAsyncResult)">
            <summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Uri,System.AsyncCallback,System.Object)" />.</summary>
            <returns>The results returned by the query operation.</returns>
            <param name="asyncResult">
              <see cref="T:System.IAsyncResult" /> object.</param>
            <typeparam name="TElement">The type returned by the query.</typeparam>
            <exception cref="T:System.ArgumentNullException">When<paramref name=" asyncResult" /> is null.</exception>
            <exception cref="T:System.ArgumentException">When<paramref name=" asyncResult" /> did not originate from this <see cref="T:System.Data.Services.Client.DataServiceContext" /> instance. -or- When the <see cref="M:System.Data.Services.Client.DataServiceContext.EndExecute``1(System.IAsyncResult)" /> method was previously called.</exception>
            <exception cref="T:System.InvalidOperationException">When an error is raised either during execution of the request or when it converts the contents of the response message into objects.</exception>
            <exception cref="T:System.Data.Services.Client.DataServiceQueryException">When the data service returns an HTTP 404: Resource Not Found error.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EndExecute(System.IAsyncResult)">
            <summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginExecute``1(System.Uri,System.AsyncCallback,System.Object)" />.</summary>
            <returns>The result of the operation.</returns>
            <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</param>
            <remarks>This method should be used in combination with the BeginExecute overload which
            expects the request uri to end with a service operation or service action that returns void.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.Execute``1(System.Uri)">
            <summary>Sends a request to the data service to execute a specific URI.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>The results of the query operation.</returns>
            <param name="requestUri">The URI to which the query request will be sent. The URI may be any valid data service URI. Can contain $ query parameters.</param>
            <typeparam name="TElement">The type that the query returns.</typeparam>
            <exception cref="T:System.Net.WebException">When a response is not received from a request to the <paramref name="requestUri" />.</exception>
            <exception cref="T:System.ArgumentNullException">When <paramref name="requestUri" /> is null.</exception>
            <exception cref="T:System.ArgumentException">When <paramref name="requestUri" /> is not a valid URI for the data service.</exception>
            <exception cref="T:System.InvalidOperationException">When an error is raised either during execution of the request or when it converts the contents of the response message into objects.</exception>
            <exception cref="T:System.Data.Services.Client.DataServiceQueryException">When the data service returns an HTTP 404: Resource Not Found error.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.Execute``1(System.Data.Services.Client.DataServiceQueryContinuation{``0})">
            <summary>Sends a request to the data service to retrieve the next page of data in a paged query result.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>The response that contains the next page of data in the query result.</returns>
            <param name="continuation">A <see cref="T:System.Data.Services.Client.DataServiceQueryContinuation`1" /> object that represents the next page of data to return from the data service.</param>
            <typeparam name="T">The type returned by the query.</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.Execute(System.Uri,System.String,System.Data.Services.Client.OperationParameter[])">
            <summary>Sends a request to the data service to execute a specific URI by using a specific HTTP method.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>The response of the operation.</returns>
            <param name="requestUri">The URI to which the query request will be sent. The URI may be any valid data service URI. Can contain $ query parameters.</param>
            <param name="httpMethod">The HTTP data transfer method used by the client.</param>
            <param name="operationParameters">The operation parameters used.</param>
            <remarks>
            This overload expects the <paramref name="requestUri"/> to end with a ServiceOperation
            or ServiceAction that returns void.
            </remarks>
            <exception cref="T:System.ArgumentNullException">null requestUri</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="httpMethod"/> is not GET nor POST.</exception>
            <exception cref="T:System.InvalidOperationException">problem materializing results of query into objects</exception>
            <exception cref="T:System.Net.WebException">failure to get response for requestUri</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.Execute``1(System.Uri,System.String,System.Boolean,System.Data.Services.Client.OperationParameter[])">
            <summary>Sends a request to the data service to execute a specific URI by using a specific HTTP method.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>Returns <see cref="T:System.Collections.Generic.IEnumerable`1"/>.</returns>
            <param name="requestUri">The URI to which the query request will be sent. The URI may be any valid data service URI. Can contain $ query parameters.</param>
            <param name="httpMethod">The HTTP data transfer method used by the client.</param>
            <param name="singleResult">Attribute used on service operations to specify that they return a single instance of their return element.</param>
            <param name="operationParameters">The operation parameters used.</param>
            <typeparam name="TElement">The type returned by the query.</typeparam>
            <exception cref="T:System.ArgumentNullException">null requestUri</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="httpMethod"/> is not GET nor POST.</exception>
            <exception cref="T:System.InvalidOperationException">problem materializing results of query into objects</exception>
            <exception cref="T:System.Net.WebException">failure to get response for requestUri</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginSaveChanges(System.AsyncCallback,System.Object)">
            <summary>Asynchronously submits the pending changes to the data service collected by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> since the last time changes were saved.</summary>
            <returns>An IAsyncResult that represents the status of the asynchronous operation.</returns>
            <param name="callback">The delegate to call when the operation is completed.</param>
            <param name="state">The user-defined state object that is used to pass context data to the callback method.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.BeginSaveChanges(System.Data.Services.Client.SaveChangesOptions,System.AsyncCallback,System.Object)">
            <summary>Asynchronously submits the pending changes to the data service collected by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> since the last time changes were saved.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</returns>
            <param name="options">The options for how the client can save the pending set of changes.</param>
            <param name="callback">The delegate to call when the operation is completed.</param>
            <param name="state">The user-defined state object that is used to pass context data to the callback method.</param>
            <remarks>
            BeginSaveChanges will asynchronously attach identity Uri returned by server to sucessfully added entites.
            EndSaveChanges will apply updated values to entities, raise ReadingEntity events and change entity states.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EndSaveChanges(System.IAsyncResult)">
            <summary>Called to complete the <see cref="M:System.Data.Services.Client.DataServiceContext.BeginSaveChanges(System.AsyncCallback,System.Object)" /> operation.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> object that indicates the result of the batch operation.</returns>
            <param name="asyncResult">An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SaveChanges">
            <summary>Saves the changes that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking to storage.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> that contains status, headers, and errors that result from the call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges.Remarks" />.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SaveChanges(System.Data.Services.Client.SaveChangesOptions)">
            <summary>Saves the changes that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking to storage.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.DataServiceResponse" /> that contains status, headers, and errors that result from the call to <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" />.</returns>
            <param name="options">A member of the <see cref="T:System.Data.Services.Client.MergeOption" /> enumeration that specifies the materialization option.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.AddLink(System.Object,System.String,System.Object)">
            <summary>Adds the specified link to the set of objects the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking.</summary>
            <param name="source">The source object for the new link.</param>
            <param name="sourceProperty">The name of the navigation property on the source object that returns the related object.</param>
            <param name="target">The object related to the source object by the new link. </param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" />, or <paramref name="target" /> are null.</exception>
            <exception cref="T:System.InvalidOperationException">If a link already exists.-or-If either the <paramref name="source" /> or <paramref name="target" /> objects are in a <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Deleted" /> state.-or-If <paramref name="sourceProperty" /> is not a collection.</exception>
            <remarks>
            Notifies the context that a new link exists between the <paramref name="source"/> and <paramref name="target"/> objects
            and that the link is represented via the source.<paramref name="sourceProperty"/> which is a collection.
            The context adds this link to the set of newly created links to be sent to
            the data service on the next call to SaveChanges().
            Links are one way relationships. If a back pointer exists (ie. two way association),
            this method should be called a second time to notify the context object of the second link.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.AttachLink(System.Object,System.String,System.Object)">
            <summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to start tracking the specified link that defines a relationship between entity objects.</summary>
            <param name="source">The source object in the new link.</param>
            <param name="sourceProperty">The name of the property on the source object that represents the link between the source and target object.</param>
            <param name="target">The target object in the link that is bound to the source object specified in this call. The target object must be of the type identified by the source property or a subtype.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" />, or <paramref name="target" /> is null.</exception>
            <exception cref="T:System.InvalidOperationException">When the link between the two entities already exists.-or-When <paramref name="source" /> or <paramref name="target" /> is in an <see cref="F:System.Data.Services.Client.EntityStates.Added" /> or <see cref="F:System.Data.Services.Client.EntityStates.Deleted" /> state.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.DetachLink(System.Object,System.String,System.Object)">
            <summary>Removes the specified link from the list of links being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
            <returns>Returns true if the specified entity was detached; otherwise false.</returns>
            <param name="source">The source object participating in the link to be marked for deletion.</param>
            <param name="sourceProperty">The name of the property on the source object that represents the source in the link between the source and the target.</param>
            <param name="target">The target object involved in the link that is bound to the source object. The target object must be of the type identified by the source property or a subtype.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="source" /> or <paramref name="sourceProperty" /> are null.</exception>
            <exception cref="T:System.ArgumentException">When <paramref name="sourceProperty" /> is an empty string.</exception>
            <remarks>Any link being tracked by the context, regardless of its current state, can be detached. </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.DeleteLink(System.Object,System.String,System.Object)">
            <summary>Changes the state of the link to deleted in the list of links being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
            <param name="source">The source object in the link to be marked for deletion.</param>
            <param name="sourceProperty">The name of the navigation property on the source object that is used to access the target object.</param>
            <param name="target">The target object involved in the link that is bound to the source object. The target object must be of the type identified by the source property or a subtype.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" />, or <paramref name="target" /> is null.</exception>
            <exception cref="T:System.InvalidOperationException">When <paramref name="source" /> or <paramref name="target" /> is in a <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Added" /> state.-or-When <paramref name="sourceProperty" /> is not a collection.</exception>
            <remarks>
            Notifies the context that a link exists between the <paramref name="source"/> and <paramref name="target"/> object
            and that the link is represented via the source.<paramref name="sourceProperty"/> which is a collection.
            The context adds this link to the set of deleted links to be sent to
            the data service on the next call to SaveChanges().
            If the specified link exists in the "Added" state, then the link is detached (see DetachLink method) instead.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SetLink(System.Object,System.String,System.Object)">
            <summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> that a new link exists between the objects specified and that the link is represented by the property specified by the <paramref name="sourceProperty" /> parameter.</summary>
            <param name="source">The source object for the new link.</param>
            <param name="sourceProperty">The property on the source object that identifies the target object of the new link.</param>
            <param name="target">The child object involved in the new link that is to be initialized by calling this method. The target object must be a subtype of the type identified by the <paramref name="sourceProperty" /> parameter. If <paramref name="target" /> is set to null, the call represents a delete link operation.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="source" />, <paramref name="sourceProperty" /> or <paramref name="target" /> are null.</exception>
            <exception cref="T:System.InvalidOperationException">When the specified link already exists.-or-When the objects supplied as <paramref name="source" /> or <paramref name="target" /> are in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> or <see cref="F:System.Data.Services.Client.EntityStates.Deleted" /> state.-or-When <paramref name="sourceProperty" /> is not a navigation property that defines a reference to a single related object.</exception>
            <remarks>
            Notifies the context that a modified link exists between the <paramref name="source"/> and <paramref name="target"/> objects
            and that the link is represented via the source.<paramref name="sourceProperty"/> which is a reference.
            The context adds this link to the set of modified created links to be sent to
            the data service on the next call to SaveChanges().
            Links are one way relationships. If a back pointer exists (ie. two way association),
            this method should be called a second time to notify the context object of the second link.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.AddObject(System.String,System.Object)">
            <summary>Adds the specified object to the set of objects that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking.</summary>
            <param name="entitySetName">The name of the entity set to which the resource will be added.</param>
            <param name="entity">The object to be tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="entitySetName" /> or <paramref name="entity" /> is null.</exception>
            <exception cref="T:System.ArgumentException">When <paramref name="entitySetName" /> is empty.-or-When <paramref name="entity" /> does not have a key property defined.</exception>
            <exception cref="T:System.InvalidOperationException">When the entity is already being tracked by the context.</exception>
            <remarks>
            It does not follow the object graph and add related objects.
            Any leading or trailing forward slashes will automatically be trimmed from entitySetName.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.AddRelatedObject(System.Object,System.String,System.Object)">
            <summary>Adds a related object to the context and creates the link that defines the relationship between the two objects in a single request.</summary>
            <param name="source">The parent object that is being tracked by the context.</param>
            <param name="sourceProperty">The name of the navigation property that returns the related object based on an association between the two entities.</param>
            <param name="target">The related object that is being added.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.AttachTo(System.String,System.Object)">
            <summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to start tracking the specified resource and supplies the location of the resource within the specified resource set.</summary>
            <param name="entitySetName">The name of the set that contains the resource.</param>
            <param name="entity">The resource to be tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />. The resource is attached in the Unchanged state.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> or <paramref name="entitySetName" /> is null.</exception>
            <exception cref="T:System.ArgumentException">When <paramref name="entitySetName" /> is an empty string.-or-When the <paramref name="entity" /> does not have a key property defined.</exception>
            <exception cref="T:System.InvalidOperationException">When the <paramref name="entity" /> is already being tracked by the context.</exception>
            <remarks>It does not follow the object graph and attach related objects.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.AttachTo(System.String,System.Object,System.String)">
            <summary>Notifies the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to start tracking the specified resource and supplies the location of the resource in the specified resource set.</summary>
            <param name="entitySetName">The string value that contains the name of the entity set to which to the entity is attached.</param>
            <param name="entity">The entity to add.</param>
            <param name="etag">An etag value that represents the state of the entity the last time it was retrieved from the data service. This value is treated as an opaque string; no validation is performed on it by the client library.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="entitySetName" /> is null.-or-When <paramref name="entity" /> is null.</exception>
            <exception cref="T:System.ArgumentException">When <paramref name="entitySetName" /> is an empty string.-or-When the supplied object does not have a key property.</exception>
            <exception cref="T:System.InvalidOperationException">When the supplied object is already being tracked by the context</exception>
            <remarks>It does not follow the object graph and attach related objects.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.DeleteObject(System.Object)">
            <summary>Changes the state of the specified object to be deleted in the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
            <param name="entity">The tracked entity to be changed to the deleted state.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
            <exception cref="T:System.InvalidOperationException">When the object is not being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</exception>
            <remarks>
            Existings objects in the Added state become detached.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.Detach(System.Object)">
            <summary>Removes the entity from the list of entities that the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is tracking.</summary>
            <returns>Returns true if the specified entity was detached; otherwise false.</returns>
            <param name="entity">The tracked entity to be detached from the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.UpdateObject(System.Object)">
            <summary>Changes the state of the specified object in the <see cref="T:System.Data.Services.Client.DataServiceContext" /> to <see cref="F:System.Data.Services.Client.EntityStates.Modified" />.</summary>
            <param name="entity">The tracked entity to be assigned to the <see cref="F:System.Data.Services.Client.EntityStates.Modified" /> state.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
            <exception cref="T:System.ArgumentException">When <paramref name="entity" /> is in the <see cref="F:System.Data.Services.Client.EntityStates.Detached" /> state.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ChangeState(System.Object,System.Data.Services.Client.EntityStates)">
            <summary>
            Changes the state of the given entity.
            Note that the 'Added' state is not supported by this method, and that AddObject or AddRelatedObject should be used instead.
            If the state 'Modified' is given, calling this method is exactly equivalent to calling UpdateObject.
            If the state 'Deleted' is given, calling this method is exactly equivalent to calling DeleteObject.
            If the state 'Detached' is given, calling this method is exactly equivalent to calling Detach.
            If the state 'Unchanged' is given, the state will be changed, but no other modifications will be made to the entity or entity descriptor associated with it.
            </summary>
            <param name="entity">The entity whose state to change.</param>
            <param name="state">The new state of the entity.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.TryGetEntity``1(System.Uri,``0@)">
            <summary>Test retrieval of an entity being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> by reference to the URI of the entity.</summary>
            <returns>If an entity is found at <paramref name="identity" />, the entity is returned in the out parameter <paramref name="entity" /> and true is returned. If no entity is found, false is returned.</returns>
            <param name="identity">The URI of the tracked entity to be retrieved.</param>
            <param name="entity">The entity to be retrieved.</param>
            <typeparam name="TEntity">The type of the entity.</typeparam>
            <exception cref="T:System.ArgumentNullException">When <paramref name="identity" /> is null.</exception>
            <remarks>entities in added state are not likely to have a identity</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.TryGetUri(System.Object,System.Uri@)">
            <summary>Retrieves the canonical URI associated with the specified entity, if available.</summary>
            <returns>Returns true if the canonical URI is returned in the out parameter. If the specified entity is not tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> or is in the added state, no URI is available and false is returned.</returns>
            <param name="entity">The entity identified by the <paramref name="identity" />.</param>
            <param name="identity">The URI of the entity.</param>
            <exception cref="T:System.ArgumentNullException">When <paramref name="entity" /> is null.</exception>
            <remarks>Entities in added state are not likely to have an identity. Though the identity might use a dereferencable scheme, you MUST NOT assume it can be dereferenced.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.InnerSynchExecute``1(System.Uri,System.String,System.Nullable{System.Boolean},System.Data.Services.Client.OperationParameter[])">
            <summary>
            Execute the <paramref name="requestUri"/> using <paramref name="httpMethod"/>.
            </summary>
            <typeparam name="TElement">Element type of the result. </typeparam>
            <param name="requestUri">Request URI to execute.</param>
            <param name="httpMethod">HttpMethod to use. Only GET or POST are supported.</param>
            <param name="singleResult">If set to true, indicates that a single result is expected as a response.
            False indicates that a collection of TElement is assumed. Should be null for void, entry, and feed cases.
            This function will check if TElement is an entity type and set singleResult to null in this case.</param>
            <param name="operationParameters">The operation parameters associated with the service operation.</param>
            <returns>A QueryOperationResponse that is enumerable over the results and holds other response information.</returns>
            <exception cref="T:System.ArgumentNullException">null requestUri</exception>
            <exception cref="T:System.ArgumentException">The <paramref name="httpMethod"/> is not GET nor POST.</exception>
            <exception cref="T:System.InvalidOperationException">problem materializing results of query into objects</exception>
            <exception cref="T:System.Net.WebException">failure to get response for requestUri</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.InnerBeginExecute``1(System.Uri,System.AsyncCallback,System.Object,System.String,System.String,System.Nullable{System.Boolean},System.Data.Services.Client.OperationParameter[])">
            <summary>Begins the execution of the request uri based on the http method.</summary>
            <typeparam name="TElement">element type of the result</typeparam>
            <param name="requestUri">request to execute</param>
            <param name="callback">User callback when results from execution are available.</param>
            <param name="state">user state in IAsyncResult</param>
            <param name="httpMethod">HttpMethod to use. Only GET and POST are supported.</param>
            <param name="method">async method name at the source.</param>
            <param name="singleResult">If set to true, indicates that a single result is expected as a response.</param>
            <param name="operationParameters">The operation parameters associated with the service operation.</param>
            <returns>async result object</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.AttachLink(System.Object,System.String,System.Object,System.Data.Services.Client.MergeOption)">
            <summary>
            Track a binding.
            </summary>
            <param name="source">Source resource.</param>
            <param name="sourceProperty">Property on the source resource that relates to the target resource.</param>
            <param name="target">Target resource.</param>
            <param name="linkMerge">merge operation</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.CreateODataRequestMessage(System.Data.Services.Client.BuildingRequestEventArgs,System.Collections.Generic.IEnumerable{System.String},System.Data.Services.Client.Descriptor)">
            <summary>
             Creates the OData request message to write the headers and payload into.
            </summary>
            <param name="requestMessageArgs">The arguments for creating the message.</param>
            <param name="headersToReset">List of header names that needs to be reset after calling SendingRequest event.</param>
            <param name="descriptor">Descriptor to expose in SendingRequest2</param>
            <returns>An instance of IODataRequestMessage with the given headers and version.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ResolveTypeFromName(System.String)">
            <summary>
            user hook to resolve name into a type
            </summary>
            <param name="wireName">name to resolve</param>
            <returns>Null if no type resolver is registered, otherwise returns whatever is returned by the type resolver.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ResolveNameFromType(System.Type)">
            <summary>
            The reverse of ResolveType, use for complex types and LINQ query expression building
            </summary>
            <param name="type">client type</param>
            <returns>type for the server</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.FireWritingAtomEntityEvent(System.Object,System.Xml.Linq.XElement,System.Uri)">
            <summary>
            Fires the WritingEntity event
            </summary>
            <param name="entity">Entity being serialized</param>
            <param name="data">XML data of the ATOM entry</param>
            <param name="baseUri">The xml base of the feed or entry containing the current ATOM entry</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.FireSendingRequest(System.Data.Services.Client.SendingRequestEventArgs)">
            <summary>
            Fires the SendingRequest event.
            </summary>
            <param name="eventArgs">SendingRequestEventArgs instance containing all information about the request.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.FireSendingRequest2(System.Data.Services.Client.SendingRequest2EventArgs)">
            <summary>
            Fires the SendingRequest2 event.
            </summary>
            <param name="eventArgs">SendingRequest2EventArgs instance containing all information about the request.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.FireReceivingResponseEvent(System.Data.Services.Client.ReceivingResponseEventArgs)">
            <summary>
            Fires the ReceivingResponse event.
            </summary>
            <param name="receivingResponseEventArgs">Args instance containing information about the response.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetSyncronousResponse(System.Data.Services.Client.ODataRequestMessageWrapper,System.Boolean)">
            <summary>
            This method wraps the HttpWebRequest.GetSyncronousResponse method call. The reasons for doing this are to give us a place
            to invoke internal test hook callbacks that can validate the response headers, and also so that we can do
            debug validation to make sure that the headers have not changed since they were originally configured on the request.
            </summary>
            <param name="request">HttpWebRequest instance</param>
            <param name="handleWebException">If set to true, this method will only re-throw the WebException that was caught if
            the response in the exception is null. If set to false, this method will always re-throw in case of a WebException.</param>
            <returns>
            Returns the HttpWebResponse from the wrapped GetSyncronousResponse method.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EndGetResponse(System.Data.Services.Client.ODataRequestMessageWrapper,System.IAsyncResult)">
            <summary>
            This method wraps the HttpWebRequest.EndGetResponse method call. The reason for doing this is to give us a place
            to invoke internal test hook callbacks that can validate the response headers.
            </summary>
            <param name="request">HttpWebRequest instance</param>
            <param name="asyncResult">Async result obtained from previous call to BeginGetResponse.</param>
            <returns>Returns the HttpWebResponse from the wrapped EndGetResponse method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.InternalSendRequest(System.Net.HttpWebRequest)">
            <summary>
            Invokes the sendRequest test hook callback with a reference to the HttpWebRequest
            </summary>
            <param name="request">HttpWebRequest to provide in the callback.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.InternalGetRequestWrappingStream(System.IO.Stream)">
            <summary>
            Invokes the getRequestWrappingStream test hook callback, so that the test code can wrap the stream and see what gets written to it.
            </summary>
            <param name="requestStream">Underlying HTTP stream to be wrapped</param>
            <returns>
            If the test hook is being used, returns the stream provided by the callback, otherwise returns the original stream.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.InternalSendResponse(System.Net.HttpWebResponse)">
            <summary>
            Invokes the sendResponse test hook callback with a reference to the HttpWebResponse
            </summary>
            <param name="response">HttpWebResponse to provide in the callback.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.InternalGetResponseWrappingStream(System.IO.Stream)">
            <summary>
            Invokes the getResponseWrappingStream test hook callback, so that the test code can wrap the stream and see what gets read from it.
            </summary>
            <param name="responseStream">Underlying HTTP stream to be wrapped</param>
            <returns>
            If the test hook is being used, returns the stream provided by the callback, otherwise returns the original stream.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetEntityMetadataBuilder(System.String,Microsoft.Data.Edm.Values.IEdmStructuredValue)">
            <summary>
            Gets an entity metadata builder to evaluate metadata which is not present in payloads, or for which the payload is not available.
            </summary>
            <param name="entitySetName">Name of the entity set to which the entity belongs.</param>
            <param name="entityInstance">The entity to build metadata for.</param>
            <returns>
            A metadata builder for the entity tracked by the given entity instance.
            </returns>
            <remarks>
            This is used for example to determine the edit link for an entity if the payload didn't have one, or to determine the URL for a navigation when building a query through LINQ.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.CreateRequestArgsAndFireBuildingRequest(System.String,System.Uri,System.Data.Services.Client.HeaderCollection,System.Data.Services.Client.HttpStack,System.Data.Services.Client.Descriptor)">
            <summary>
            Fires the BuildingRequest event to get a new RequestMessageArgs object.
            </summary>
            <param name="method">Http method for the request.</param>
            <param name="requestUri">Base Uri for the request.</param>
            <param name="headers">Http stack to use for the request.</param>
            <param name="stack">Http stack to use for the request.</param>
            <param name="descriptor">Descriptor for the request, if there is one.</param>
            <returns>A new RequestMessageArgs object for building the request message.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.DefaultResolveType(System.String,System.String,System.String)">
            <summary>
            Determines the type that
            </summary>
            <param name="typeName">Name of the type to resolve.</param>
            <param name="fullNamespace">Namespace of the type.</param>
            <param name="languageDependentNamespace">Namespace of the type, can be different in VB than the fullNamespace.</param>
            <returns>Type that the name resolved to or null if none found.</returns>
            <remarks>Function was added for Portable Lib support to handle the differences in accessing the assembly of the context.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ValidateEntitySetName(System.String@)">
            <summary>validate <paramref name="entitySetName"/> and trim leading and trailing forward slashes
            </summary>
            <param name="entitySetName">resource name to validate</param>
            <exception cref="T:System.ArgumentNullException">if entitySetName was null</exception>
            <exception cref="T:System.ArgumentException">if entitySetName was empty or contained only forward slash</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ValidateEntityType(System.Object,System.Data.Services.Client.ClientEdmModel)">
            <summary>validate <paramref name="entity"/> is entity type</summary>
            <param name="entity">entity to validate</param>
            <param name="model">The client model.</param>
            <exception cref="T:System.ArgumentNullException">if entity was null</exception>
            <exception cref="T:System.ArgumentException">if entity does not have a key property</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ValidateOperationParameters(System.String,System.Data.Services.Client.OperationParameter[],System.Collections.Generic.List{System.Data.Services.Client.BodyOperationParameter}@,System.Collections.Generic.List{System.Data.Services.Client.UriOperationParameter}@)">
            <summary>
            Validates a given list of operation parameter and returns two seperated list of body operation parameter
            and uri operation parameter respectively.
            </summary>
            <param name="httpMethod">the http method used in the request. Only POST and GET http methods are supported with operation parameters.</param>
            <param name="parameters">The list of operation parameters to be validated.</param>
            <param name="bodyOperationParameters">The list of body operation parameters to be returned.</param>
            <param name="uriOperationParameters">The list of uri operation parameters to be returned.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.CheckUsingAtom">
            <summary>
            Verify that the format is set to Atom, and fail otherwise.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.FireBuildingRequest(System.Data.Services.Client.BuildingRequestEventArgs)">
            <summary>
            Fires the BuildingRequest event so the user can add custom query parameters.
            </summary>
            <param name="buildingRequestEventArgs">Information about the request so they user can selectively add query parameters.</param>
            <returns>A new RequestMessageArgs object that contains any changes the user made to the query string.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ValidateSaveChangesOptions(System.Data.Services.Client.SaveChangesOptions)">
            <summary>
            Validate the SaveChanges Option
            </summary>
            <param name="options">options as specified by the user.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ValidateExecuteParameters``1(System.Uri@,System.String,System.Nullable{System.Boolean}@,System.Collections.Generic.List{System.Data.Services.Client.BodyOperationParameter}@,System.Collections.Generic.List{System.Data.Services.Client.UriOperationParameter}@,System.Data.Services.Client.OperationParameter[])">
            <summary>
            Validate and process the input parameters to all the execute methods. Also seperates and returns
            the input operation parameters list into two seperate list - one of body operation parameters and the other
            for uri operation parameters.
            </summary>
            <typeparam name="TElement">element type. See Execute method for more details.</typeparam>
            <param name="requestUri">request to execute</param>
            <param name="httpMethod">HttpMethod to use. Only GET and POST are supported.</param>
            <param name="singleResult">If set to true, indicates that a single result is expected as a response.</param>
            <param name="bodyOperationParameters">The list of body operation parameters to be returned.</param>
            <param name="uriOperationParameters">The list of uri operation parameters to be returned.</param>
            <param name="operationParameters">The operation parameters associated with the service operation.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.CreateLoadPropertyRequest(System.Object,System.String,System.AsyncCallback,System.Object,System.Uri,System.Data.Services.Client.DataServiceQueryContinuation)">
            <summary>
            create the load property request
            </summary>
            <param name="entity">entity</param>
            <param name="propertyName">name of collection or reference property to load</param>
            <param name="callback">The AsyncCallback delegate.</param>
            <param name="state">user state</param>
            <param name="requestUri">The request uri, or null if one is to be constructed</param>
            <param name="continuation">Continuation, if one is available.</param>
            <returns>a aync result that you can get a response from</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EnsureRelatable(System.Object,System.String,System.Object,System.Data.Services.Client.EntityStates)">
            <summary>
            verify the source and target are relatable
            </summary>
            <param name="source">source Resource</param>
            <param name="sourceProperty">source Property</param>
            <param name="target">target Resource</param>
            <param name="state">destination state of relationship to evaluate for</param>
            <returns>true if DeletedState and one of the ends is in the added state</returns>
            <exception cref="T:System.ArgumentNullException">if source or target are null</exception>
            <exception cref="T:System.ArgumentException">if source or target are not contained</exception>
            <exception cref="T:System.ArgumentNullException">if source property is null</exception>
            <exception cref="T:System.ArgumentException">if source property empty</exception>
            <exception cref="T:System.InvalidOperationException">Can only relate ends with keys.</exception>
            <exception cref="T:System.ArgumentException">If target doesn't match property type.</exception>
            <exception cref="T:System.InvalidOperationException">If adding relationship where one of the ends is in the deleted state.</exception>
            <exception cref="T:System.InvalidOperationException">If attaching relationship where one of the ends is in the added or deleted state.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.CreateGetReadStreamResult(System.Object,System.Data.Services.Client.DataServiceRequestArgs,System.AsyncCallback,System.Object,System.String)">
            <summary>
            This method creates an async result object around a request to get the read stream for a Media Resource
            associated with the Media Link Entry represented by the entity object.
            </summary>
            <param name="entity">The entity which is the Media Link Entry for the requested Media Resource. Thist must specify
            a tracked entity in a non-added state.</param>
            <param name="args">Instance of <see cref="T:System.Data.Services.Client.DataServiceRequestArgs"/> class with additional metadata for the request.
            Must not be null.</param>
            <param name="callback">User defined callback to be called when results are available. Can be null.</param>
            <param name="state">User state in IAsyncResult. Can be null.</param>
            <param name="name">name of the stream.</param>
            <returns>The async result object for the request, the request hasn't been started yet.</returns>
            <exception cref="T:System.ArgumentNullException">Either entity or args parameters are null.</exception>
            <exception cref="T:System.ArgumentException">The specified entity is either not tracked,
            is in the added state or it's not an MLE.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EnsureMinimumProtocolVersionV3">
            <summary>
            Ensures that the required data service protocol version is lesser than the maxprotocolversion on this instance.
            </summary>
            <exception cref="T:System.InvalidOperationException">throws an invalidoperationexception if the max protocolversion is lesser than the required protocol version</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.EnsureMaximumProtocolVersionForProperty(System.String,System.Version)">
            <summary>
            Ensures that the maxprotocolversion on this instance is lesser than <paramref name="maxAllowedVersion"/>
            </summary>
            <param name="propertyName">The property being modified.</param>
            <param name="maxAllowedVersion">The max allowed dataserviceversion for modifying this property.</param>
            <exception cref="T:System.InvalidOperationException">throws a NotSupportedException if the max protocolversion is greater than <paramref name="maxAllowedVersion"/></exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetEntityMetadataBuilderInternal(System.Data.Services.Client.EntityDescriptor)">
            <summary>
            Helper method for calling the overridable GetEntityMetadataBuilder API and performing common logic/verification.
            </summary>
            <param name="descriptor">The entity descriptor tracking the entity.</param>
            <returns>A metadata builder for the entity tracked by the given descriptor.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.GetResponseHelper(System.Data.Services.Client.ODataRequestMessageWrapper,System.IAsyncResult,System.Boolean)">
            <summary>
            This method wraps the HttpWebRequest.GetSyncronousResponse method call. It fires the ReceivingResponse event.
            It also gives us a place to invoke internal test hook callbacks that can validate the response headers, and also so that we can do
            debug validation to make sure that the headers have not changed since they were originally configured on the request.
            </summary>
            <param name="request">HttpWebRequest instance</param>
            <param name="asyncResult">IAsyncResult for EndGetResponse if this is an async call.</param>
            <param name="handleWebException">If set to true, this method will only re-throw the WebException that was caught if
            the response in the exception is null. If set to false, this method will always re-throw in case of a WebException.</param>
            <returns>Returns the HttpWebResponse from the wrapped GetSyncronousResponse method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.UpdateObjectInternal(System.Object,System.Boolean)">
            <summary>
            Mark an existing object for update in the context.
            </summary>
            <param name="entity">entity to be mark for update</param>
            <param name="failIfNotUnchanged">If true, then an exception should be thrown if the entity is in neither the unchanged nor modified states.</param>
            <exception cref="T:System.ArgumentNullException">if entity is null</exception>
            <exception cref="T:System.ArgumentException">if entity is detached</exception>
            <exception cref="T:System.InvalidOperationException">if entity is not unchanged or modified and <paramref name="failIfNotUnchanged"/> is true.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.DeleteObjectInternal(System.Object,System.Boolean)">
            <summary>
            Mark an existing object being tracked by the context for deletion.
            </summary>
            <param name="entity">entity to be mark deleted</param>
            <param name="failIfInAddedState">If true, then an exception will be thrown if the entity is in the added state.</param>
            <exception cref="T:System.ArgumentNullException">if entity is null</exception>
            <exception cref="T:System.InvalidOperationException">if entity is not being tracked by the context, or if the entity is in the added state and <paramref name="failIfInAddedState"/> is true.</exception>
            <remarks>
            Existings objects in the Added state become detached if <paramref name="failIfInAddedState"/> is false.
            </remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.SetStateToUnchanged(System.Object)">
            <summary>
            Sets the entity's state to unchanged.
            </summary>
            <param name="entity">The entity to set back to unchanged.</param>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.SendingRequest">
            <summary>Occurs when a new <see cref="T:System.Net.HttpWebRequest" /> has been created.</summary>
            <remarks>
            This event is fired before a request is sent to the server, giving
            the handler the opportunity to inspect, adjust and/or replace the
            WebRequest object used to perform the request.
            When calling BeginSaveChanges and not using SaveChangesOptions.Batch and SaveChangesOptions.BatchWithIndependentOperations,
            this event may be raised from a different thread.
            </remarks>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.SendingRequest2">
            <summary>
            This event is fired before a request is sent to the server, giving
            the handler the opportunity to inspect, adjust and/or replace the
            WebRequest object used to perform the request.
            </summary>
            <remarks>
            When calling BeginSaveChanges and not using SaveChangesOptions.Batch and SaveChangesOptions.BatchWithIndependentOperations,
            this event may be raised from a different thread.
            </remarks>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.BuildingRequest">
            <summary>
            This event is fired before a request message object is built, giving
            the handler the opportunity to inspect, adjust and/or replace some
            request information before the message is built. This event should be
            used to modify the outgoing Url of the request or alter request headers.
            After the request is built, other modifications on the WebRequest object can be made
            in SendingRequest2.
            </summary>
            <remarks>
            When calling BeginSaveChanges and not using SaveChangesOptions.Batch and SaveChangesOptions.BatchWithIndependentOperations,
            this event may be raised from a different thread.
            </remarks>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.ReadingEntity">
            <summary>Occurs after entity data has been completely read into the entity object.</summary>
            <remarks>
            This event fires once an entry has been read into a .NET object
            but before the serializer returns to the caller, giving handlers
            an opporunity to read further information from the incoming ATOM
            entry and updating the object.
            This event should only be raised from the thread that was used to
            invoke Execute, EndExecute, SaveChanges, EndSaveChanges.
            </remarks>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.ReceivingResponse">
            <summary>
            This event fires when a response is received by the client.
            It fires for both top level responses and each operation or query within a batch response.
            </summary>
            <remarks>
            On top level requests, the event is fired before any processing is done.
            For inner batch operations, the event is also fired before any processing is done, with
            the exception that the content-ID of a changeset operation will be read before the event is fired.
            </remarks>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.WritingEntity">
            <summary>Occurs after an entity has been fully serialized into XML in a request message.</summary>
            <remarks>
            This event fires once an ATOM entry is ready to be written to
            the network for a request, giving handlers an opportunity to
            customize the entry with information from the corresponding
            .NET object or the environment.
            When calling BeginSaveChanges and not using SaveChangesOptions.Batch and SaveChangesOptions.BatchWithIndependentOperations,
            this event may be raised from a different thread.
            </remarks>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.ChangesSaved">
            <summary>
            This event fires when SaveChanges or EndSaveChanges is called
            </summary>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.InnerSendingRequest">
            <summary>
            Internal event instance used by the public SendingRequest event.
            </summary>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.InnerBuildingRequest">
            <summary>
            Internal event instance used by the public BuildingRequest event.
            </summary>
        </member>
        <member name="E:System.Data.Services.Client.DataServiceContext.WritingAtomEntity">
            <summary>
            Internal event instance used by the public WritingEntity event.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.ResolveEntitySet">
            <summary>Gets or sets the delegate method that is used to resolve the entity set URI when the value cannot be determined from an edit-link or self-link URI.</summary>
            <returns>A delegate that takes a <see cref="T:System.String" /> and returns a <see cref="T:System.Uri" /> value.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.BaseUri">
            <summary>Gets the absolute URI identifying the root of the target data service. </summary>
            <returns>An absolute URI that identifies the root of a T data service.</returns>
            <remarks>
            A Uri provided with a trailing slash is equivalent to one without such a trailing character.
            Example: http://server/host/myservice.svc
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.AddAndUpdateResponsePreference">
            <summary>Gets or sets whether the client requests that the data service return entity data in the response message to a change request.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.DataServiceResponsePreference" /> object that determines whether to request a response form the data service. </returns>
            <remarks>Whether POST/PUT/MERGE requests will process response from the server. Corresponds to Prefer header in HTTP POST/PUT/MERGE request.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.MaxProtocolVersion">
            <summary>Gets the maximum version of the Open Data Protocol (OData) that the client is allowed to use.</summary>
            <returns>The maximum version of OData that the client is allowed to use.</returns>
            <remarks>If the request or response would require higher version the client will fail.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.Credentials">
            <summary>Gets or sets the authentication information that is used by each query created by using the <see cref="T:System.Data.Services.Client.DataServiceContext" /> object.</summary>
            <returns>The base authentication interface for retrieving credentials for Web client authentication.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.MergeOption">
            <summary>Gets or sets the synchronization option for receiving entities from a data service.</summary>
            <returns>One of the members of the <see cref="T:System.Data.Services.Client.MergeOption"/> enumeration.</returns>
            <remarks>
            Used to specify a synchronization strategy when sending/receiving entities to/from a data service.
            This value is read by the deserialization component of the client prior to materializing objects.
            As such, it is recommended to set this property to the appropriate materialization strategy
            before executing any queries/updates to the data service.
            The default value is <see cref="P:System.Data.Services.Client.DataServiceContext.MergeOption"/>.AppendOnly.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.ApplyingChanges">
            <summary>Gets a value that indicates whether the <see cref="T:System.Data.Services.Client.DataServiceContext" /> is currently applying changes to tracked objects.</summary>
            <returns>Returns true when changes are currently being applied; otherwise returns false.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.IgnoreMissingProperties">
            <summary>Gets or sets whether the properties read from the type must be mapped to properties on the client-side type.</summary>
            <returns>A Boolean value that indicates whether the properties read from the type must be mapped to properties on the client-side type.</returns>
            <remarks>
            This also affects responses during SaveChanges.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.AutoNullPropagation">
            <summary>
            Gets or sets whether query projection will handle null propagation automatically.
            If sets to true, null propagation checks can be omitted from queries.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.UndeclaredPropertyBehavior">
            <summary>Gets or sets whether to respect IgnoreMissingProperties boolean, or directly ignore/support undeclared properties.</summary>
            <remarks>
            This also affects responses during SaveChanges.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.DataNamespace">
            <summary>Gets or sets the XML namespace for data items, not metadata items, of an Atom payload.</summary>
            <returns>A string representing the XML namespace for data items of a payload in the ATOM format.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.ResolveBackingField">
            <summary>Gets or sets a function that is used to resolve the backing field for a property in an entity.</summary>
            <returns>A delegate that takes a <see cref="T:System.Reflection.PropertyInfo" /> and returns a <see cref="T:System.Reflection.FieldInfo" /> value.</returns>
            <remarks>
            This is used internally to check properties for null values without triggering lazy construction.
            The supplied delegate should return the FieldInfo for the backing field for the PropertyInfo parameter. The method may return null.
            The returned FieldInfo.FieldType should match the PropertyInfo.PropertyType or it will be disregarded.
            This is only used for collection navigation properties, collection complex properties and single value complex properties.
            For entities with a large amount of collection navigation/complex collection properties and/or complex properties,
            using lazy construction in the proxy and setting ResolveBackingField can dramatically improve performance during GET operations.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.ResolveName">
            <summary>Gets or sets a function to override the default type resolution strategy used by the client library when you send entities to a data service.</summary>
            <returns>Returns a string that contains the name of the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</returns>
            <remarks>
            Enables one to override the default type resolution strategy used by the client library.
            Set this property to a delegate which identifies a function that resolves
            a type within the client application to a namespace-qualified type name.
            This enables the client to perform custom mapping between the type name
            provided in a response from the server and a type on the client.
            This method enables one to override the entity name that is serialized
            to the target representation (ATOM,JSON, etc) for the specified type.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.ResolveType">
            <summary>Gets or sets a function that is used to override the default type resolution option that is used by the client library when receiving entities from a data service.</summary>
            <returns>A function delegate that identifies an override function that is used to override the default type resolution option that is used by the client library.</returns>
            <remarks>
            Enables one to override the default type resolution strategy used by the client library.
            Set this property to a delegate which identifies a function that resolves a
            namespace-qualified type name to type within the client application.
            This enables the client to perform custom mapping between the type name
            provided in a response from the server and a type on the client.
            Overriding type resolution enables inserting a custom type name to type mapping strategy.
            It does not enable one to affect how a response is materialized into the identified type.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.Timeout">
            <summary>Gets or sets the time-out option (in seconds) that is used for the underlying HTTP request to the data service.</summary>
            <returns>An integer that indicates the time interval (in seconds) before time-out of a service request.</returns>
            <remarks>
            A value of 0 will use the default timeout of the underlying HTTP request.
            This value must be set before executing any query or update operations against
            the target data service for it to have effect on the on the request.
            The value may be changed between requests to a data service and the new value
            will be picked up by the next data service request.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.TypeScheme">
            <summary>Gets or sets the URI used to indicate what type scheme is used by the service.</summary>
            <returns>A <see cref="T:System.Uri" /> object that contains the type scheme.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.UsePostTunneling">
            <summary>Gets or sets a Boolean value that indicates whether to use post tunneling.</summary>
            <returns>A Boolean value that indicates whether to use post tunneling.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.Links">
            <summary>Gets the collection of all associations or links currently being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> object.</summary>
            <returns>A collection of <see cref="T:System.Data.Services.Client.LinkDescriptor" /> objects that represent all associations or links current being tracked by the current being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" /> object.</returns>
            <remarks>If no links are being tracked, a collection with 0 elements is returned.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.Entities">
            <summary>Gets a list of all the resources currently being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />.</summary>
            <returns>A list of <see cref="T:System.Data.Services.Client.EntityDescriptor" /> objects that represent all the resources currently being tracked by the <see cref="T:System.Data.Services.Client.DataServiceContext" />. </returns>
            <remarks>If no resources are being tracked, a collection with 0 elements is returned.</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.SaveChangesDefaultOptions">
            <summary>Gets or sets the <see cref="T:System.Data.Services.Client.SaveChangesOptions" /> values that are used by the <see cref="M:System.Data.Services.Client.DataServiceContext.SaveChanges" /> method.</summary>
            <returns>The current options for the save changes operation.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.IgnoreResourceNotFoundException">
            <summary>Gets or sets whether an exception is raised when a 404 error (resource not found) is returned by the data service. </summary>
            <returns>When set to true, the client library returns an empty set instead of raising a <see cref="T:System.Data.Services.Client.DataServiceQueryException" /> when the data service returns an HTTP 404: Resource Not Found error.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.Configurations">
            <summary>
            Gets the configurations.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.Format">
            <summary>
            Gets an object which allows the user to customize the format the client will use for making requests.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.UrlConventions">
            <summary>
            Gets or sets the URL conventions the client should use.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.AllowDirectNetworkStreamReading">
            <summary>
            If set to true data is read directly from the network stream. If set to false (default/old behaviour) the network stream is copied before reading.
            </summary>
            <remarks>
            This setting only has effect for synchronous requests. Setting this to true will increase performance.
            </remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.UseDefaultCredentials">
            <summary>
            Gets or sets a System.Boolean value that controls whether default credentials are sent with requests.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.HttpStack">
            <summary>Gets a value that indicates the type of HTTP implementation to use when accessing the data service in Silverlight.</summary>
            <returns>A <see cref="T:System.Data.Services.Client.HttpStack" /> value that indicates the HTTP implementation to use when accessing the data service.</returns>
            <remarks>Default value is HttpStack.Auto</remarks>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.HasWritingEntityHandlers">
            <summary>Indicates if there are subscribers for the WritingEntity event</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.HasAtomEventHandlers">
            <summary>
            True if any event handlers are registered for events that are only supported with Atom.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.HasSendingRequestEventHandlers">
            <summary>Indicates if there are subscribers for the SendingRequest event.
            We do not fire SendingRequest event if there are subscribers to SendingRequest2 event.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.HasSendingRequest2EventHandlers">
            <summary>Indicates if there are subscribers for the SendingRequest2 event.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.HasBuildingRequestEventHandlers">
            <summary>
            INdicates if there are any subscribers for the BuildingRequestEvent.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.EntityTracker">
            <summary>Returns the instance of entity tracker which tracks all the entities and links tracked by the context.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.FormatTracker">
            <summary>The tracker for user-specified format information.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.BaseUriResolver">
            <summary>Returns the instance of entity tracker which tracks all the entities and links tracked by the context.</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceContext.Model">
            <summary>
            Gets the client model.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceContext.ClientEdmModelCache">
            <summary>
            Cache for client edm models by version.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceContext.ClientEdmModelCache.modelCache">
            <summary>A cache that maps a data service protocol version to its corresponding <see cref="T:System.Data.Services.Client.ClientEdmModel"/>.</summary>
            <remarks>Note that it is initialized in a static ctor and must not be changed later to avoid threading issues.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ClientEdmModelCache.#cctor">
            <summary>
            Static constructor used to initialize modelCache.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceContext.ClientEdmModelCache.GetModel(System.Data.Services.Common.DataServiceProtocolVersion)">
            <summary>
            Get the cached model for the specified max protocol version.
            </summary>
            <param name="maxProtocolVersion">The <see cref="T:System.Data.Services.Common.DataServiceProtocolVersion"/> to get the cached model for.</param>
            <returns>The cached model for the <paramref name="maxProtocolVersion"/>.</returns>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceQuery`1">
            <summary>
            query object
            </summary>
            <typeparam name="TElement">type of object to materialize</typeparam>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQuery`1.expandMethodInfo">
            <summary>Method info for the v1 Expand method.</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQuery`1.expandGenericMethodInfo">
            <summary>Method info for the generic version of the Expand method</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQuery`1.queryExpression">
            <summary>Linq Expression</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQuery`1.queryProvider">
            <summary>Linq Query Provider</summary>
        </member>
        <member name="F:System.Data.Services.Client.DataServiceQuery`1.queryComponents">
            <summary>Uri, Projection, Version for translated query</summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.#ctor(System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceQueryProvider)">
            <summary>
            query object
            </summary>
            <param name="expression">expression for query</param>
            <param name="provider">query provider for query</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.BeginExecute(System.AsyncCallback,System.Object)">
            <summary>Starts an asynchronous network operation that executes the query represented by this object instance.</summary>
            <returns>An <see cref="T:System.IAsyncResult" /> that represents the status of the asynchronous operation.</returns>
            <param name="callback">The delegate to invoke when the operation completes.</param>
            <param name="state">User defined object used to transfer state between the start of the operation and the callback defined by <paramref name="callback" />.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.EndExecute(System.IAsyncResult)">
            <summary>Ends an asynchronous query request to a data service.</summary>
            <returns>Returns an <see cref="T:System.Collections.Generic.IEnumerable`1" /> that contains the results of the query operation.</returns>
            <param name="asyncResult">The pending asynchronous query request.</param>
            <exception cref="T:System.Data.Services.Client.DataServiceQueryException">When the data service returns an HTTP 404: Resource Not Found error.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.Execute">
            <summary>Executes the query and returns the results as a collection that implements IEnumerable.Not supported by the WCF Data Services 5.0 client for Silverlight.</summary>
            <returns>An <see cref="T:System.Collections.Generic.IEnumerable`1" /> in which TElement represents the type of the query results.</returns>
            <exception cref="T:System.Data.Services.Client.DataServiceQueryException">When the data service returns an HTTP 404: Resource Not Found error.</exception>
            <exception cref="T:System.NotSupportedException">When during materialization an object is encountered in the input stream that cannot be deserialized to an instance of TElement.</exception>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.Expand(System.String)">
            <summary>Expands a query to include entities from a related entity set in the query response.</summary>
            <returns>A new query that includes the requested $expand query option appended to the URI of the supplied query.</returns>
            <param name="path">The expand path in the format Orders/Order_Details.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.Expand``1(System.Linq.Expressions.Expression{System.Func{`0,``0}})">
            <summary>Expands a query to include entities from a related entity set in the query response, where the related entity is of a specific type in a type hierarchy. </summary>
            <returns>Returns a <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> that with the expand option included.</returns>
            <param name="navigationPropertyAccessor">A lambda expression that indicates the navigation property that returns the entity set to include in the expanded query.</param>
            <typeparam name="TTarget">Target type of the last property on the expand path.</typeparam>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.IncludeTotalCount">
            <summary>Requests that the count of all entities in the entity set be returned inline with the query results.</summary>
            <returns>A new <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> object that has the inline count option set.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.AddQueryOption(System.String,System.Object)">
            <summary>Creates a new <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> with the query option set in the URI generated by the returned query.</summary>
            <returns>A new query that includes the requested query option appended to the URI of the supplied query</returns>
            <param name="name">The string value that contains the name of the query string option to add.</param>
            <param name="value">The object that contains the value of the query string option.</param>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.GetEnumerator">
            <summary>Executes the query and returns the results as a collection.</summary>
            <returns>A typed enumerator over the results in which TElement represents the type of the query results.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.ToString">
            <summary>Represents the URI of the query to the data service.</summary>
            <returns>A URI as string that represents the query to the data service for this <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> instance.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.System#Collections#IEnumerable#GetEnumerator">
            <summary>Executes the query and returns the results as a collection.</summary>
            <returns>An enumerator over the query results.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.QueryComponents(System.Data.Services.Client.ClientEdmModel)">
            <summary>
            gets the UriTranslateResult for a the query
            </summary>
            <param name="model">The client model.</param>
            <returns>an instance of QueryComponents.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.ExecuteInternal">
            Synchronous methods not available
            <summary>
            Returns an IEnumerable from an Internet resource.
            </summary>
            <returns>An IEnumerable that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.BeginExecuteInternal(System.AsyncCallback,System.Object)">
            <summary>
            Begins an asynchronous request to an Internet resource.
            </summary>
            <param name="callback">The AsyncCallback delegate.</param>
            <param name="state">The state object for this request.</param>
            <returns>An IAsyncResult that references the asynchronous request for a response.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.EndExecuteInternal(System.IAsyncResult)">
            <summary>
            Ends an asynchronous request to an Internet resource.
            </summary>
            <param name="asyncResult">The pending request for a response. </param>
            <returns>An IEnumerable that contains the response from the Internet resource.</returns>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.Translate">
            <summary>
            gets the query components for the query after translating
            </summary>
            <returns>QueryComponents for query</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery`1.ElementType">
            <summary>Returns the type of the object used in the template to create the <see cref="T:System.Data.Services.Client.DataServiceQuery`1" /> instance.</summary>
            <returns>Returns <see cref="T:System.Type" /> representing the type used in the template when the query is created.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery`1.Expression">
            <summary>Represents an expression containing the query to the data service.</summary>
            <returns>A <see cref="T:System.Linq.Expressions.Expression" /> object representing the query.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery`1.Provider">
            <summary>Represents the query provider instance.</summary>
            <returns>A <see cref="T:System.Linq.IQueryProvider" /> representing the data source provider.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery`1.RequestUri">
            <summary>Get the URI for the query.</summary>
            <returns>The URI of the request.</returns>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery`1.Plan">
            <summary>The ProjectionPlan for the request (if precompiled in a previous page).</summary>
        </member>
        <member name="P:System.Data.Services.Client.DataServiceQuery`1.Context">
            <summary>Context associated with this query.</summary>
        </member>
        <member name="T:System.Data.Services.Client.DataServiceQuery`1.DataServiceOrderedQuery">
            <summary>
            Ordered DataServiceQuery which implements IOrderedQueryable.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.DataServiceQuery`1.DataServiceOrderedQuery.#ctor(System.Linq.Expressions.Expression,System.Data.Services.Client.DataServiceQueryProvider)">
            <summary>
            constructor
            </summary>
            <param name="expression">expression for query</param>
            <param name="provider">query provider for query</param>
        </member>
        <member name="T:System.Data.Services.Client.WebUtil">
            <summary>web utility functions</summary>
        </member>
        <member name="F:System.Data.Services.Client.WebUtil.DefaultBufferSizeForStreamCopy">
            <summary>
            Default buffer size used for stream copy.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.WebUtil.dataServiceCollectionAvailable">
            <summary>
            Whether DataServiceCollection&lt;&gt; type is available.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.WebUtil.getDefaultValueMethodInfo">
            <summary>Method info for GetDefaultValue&lt;T&gt;.</summary>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.CopyStream(System.IO.Stream,System.IO.Stream,System.Byte[]@)">
            <summary>copy from one stream to another</summary>
            <param name="input">input stream</param>
            <param name="output">output stream</param>
            <param name="refBuffer">reusable buffer</param>
            <returns>count of copied bytes</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetHttpWebResponse(System.InvalidOperationException,Microsoft.Data.OData.IODataResponseMessage@)">
            <summary>get response object from possible WebException</summary>
            <param name="exception">exception to probe</param>
            <param name="response">http web respose object from exception</param>
            <returns>an instance of InvalidOperationException.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.SuccessStatusCode(System.Net.HttpStatusCode)">
            <summary>is this a success status code</summary>
            <param name="status">status code</param>
            <returns>true if status is between 200-299</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.IsCLRTypeCollection(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Checks if the provided type is a collection type (i.e. it implements ICollection and the collection item type is not an entity).
            </summary>
            <param name="type">Type being checked.</param>
            <param name="model">The client model.</param>
            <returns>True if the CLR type is a collection compatible type. False otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.IsWireTypeCollection(System.String)">
            <summary>
            Checks if the provided type name is a name of a collection type.
            </summary>
            <param name="wireTypeName">Type name read from the payload.</param>
            <returns>true if <paramref name="wireTypeName"/> is a name of a collection type otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetCollectionItemWireTypeName(System.String)">
            <summary>
            Returns collection item type name or null if the provided type name is not a collection.
            </summary>
            <param name="wireTypeName">Collection type name read from payload.</param>
            <returns>Collection item type name or null if not a collection.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetBackingTypeForCollectionProperty(System.Type,System.Type)">
            <summary>
            Resolves and creates if necessary a backing type for the <paramref name="collectionPropertyType"/>.
            </summary>
            <param name="collectionPropertyType">Type of a collection property as defined by the user - can be just an interface or generic type.</param>
            <param name="collectionItemType">Type of items stored in the collection.</param>
            <returns>Resolved concrete type that can be instantiated and will back the collection property. Can be the <paramref name="collectionPropertyType"/> type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.CheckArgumentNull``1(``0,System.String)">
            <summary>
            Checks the argument value for null and throw ArgumentNullException if it is null
            </summary>
            <typeparam name="T">type of the argument</typeparam>
            <param name="value">argument whose value needs to be checked</param>
            <param name="parameterName">name of the argument</param>
            <returns>returns the argument back</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.ValidateCollection(System.Type,System.Object,System.String)">
            <summary>
            Checks if the collection is valid. Throws if the collection is not valid.
            </summary>
            <param name="collectionItemType">The type of the collection item. Can not be null.</param>
            <param name="propertyValue">Collection instance to be validated.</param>
            <param name="propertyName">The name of the property being serialized (for exception messages). Can be null if the type is not a property.</param>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.ValidateCollectionItem(System.Object)">
            <summary>
            Checks if the value of a collection item is valid. Throws if it finds the value invalid.
            </summary>
            <param name="itemValue">The value of the collection item.</param>
            <remarks>This method should be called first to validate all items in a collection regardless of their type.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.ValidatePrimitiveCollectionItem(System.Object,System.String,System.Type)">
            <summary>
            Checks if the value of a primitive collection item is valid. Throws if it finds the value invalid.
            </summary>
            <param name="itemValue">The value of the collection item.</param>
            <param name="propertyName">The name of the collection property being serialized. Can be null.</param>
            <param name="collectionItemType">The type of the collection item as declared by the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.ValidateComplexCollectionItem(System.Object,System.String,System.Type)">
            <summary>
            Checks if the value of a complex collection item is valid. Throws if it finds the value invalid.
            </summary>
            <param name="itemValue">The value of the collection item.</param>
            <param name="propertyName">The name of the collection property being serialized. Can be null if the type is not a property.</param>
            <param name="collectionItemType">The type of the collection item as declared by the collection.</param>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.ValidateIdentityValue(System.String)">
            <summary>
            Validates the value of the identity, the atom:id or DataServiceId
            </summary>
            <param name="identity">The value to validate</param>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.ValidateLocationHeader(System.String)">
            <summary>
            Validates the value of the 'Location' response header.
            </summary>
            <param name="location">the value as seen on the wire.</param>
            <returns>an absolute uri or </returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetPreferHeaderAndRequestVersion(System.Data.Services.Client.DataServiceResponsePreference,System.Version@)">
            <summary>
            Determines the value of the Prefer header based on the response preference settings. Also modifies the request version as necessary.
            </summary>
            <param name="responsePreference">The response preference setting for the request.</param>
            <param name="requestVersion">The request version so far, this might be modified (raised) if necessary due to response preference being applied.</param>
            <returns>The value of the Prefer header to apply to the request.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.RaiseVersion(System.Version@,System.Version)">
            <summary>
            Raises the version specified to the new minimal version (if it's lower than the current one)
            </summary>
            <param name="version">The version to be raised.</param>
            <param name="minimalVersion">The minimal version needed.</param>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.IsDataServiceCollectionType(System.Type)">
            <summary>
            Checks if the given type is DataServiceCollection&lt;&gt; type.
            </summary>
            <param name="t">Type to be checked.</param>
            <returns>true if the provided type is DataServiceCollection&lt;&gt; or false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetDataServiceCollectionOfT(System.Type[])">
            <summary>
            Creates an instance of DataServiceCollection&lt;&gt; class using provided types.
            </summary>
            <param name="typeArguments">Types to be used for creating DataServiceCollection&lt;&gt; object.</param>
            <returns>
            Instance of DataServiceCollection&lt;&gt; class created using provided types or null if DataServiceCollection&lt;&gt;
            type is not avaiable.
            </returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetDefaultValue(System.Type)">
            <summary>
            Returns the default value for the given type
            </summary>
            <param name="type">type to get the default value</param>
            <returns>returns the default value for <paramref name="type"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetDefaultValue``1">
            <summary>
            Returns the default value for the given type
            </summary>
            <typeparam name="T">type to get the default value</typeparam>
            <returns>returns the default value for <typeparamref name="T"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.DisposeMessage(Microsoft.Data.OData.IODataResponseMessage)">
            <summary>
            Dispose the message if it implements IDisposable.
            </summary>
            <param name="responseMessage">IODataResponseMessage to dispose.</param>
        </member>
        <member name="M:System.Data.Services.Client.WebUtil.GetDataServiceCollectionOfTType">
            <summary>
            Forces loading WindowsBase assembly. If WindowsBase assembly is not present JITter will throw an exception.
            This method MUST NOT be inlined otherwise we won't be able to catch the exception by JITter in the caller.
            </summary>
            <returns>typeof(DataServiceCollection&lt;&gt;)</returns>
        </member>
        <member name="P:System.Data.Services.Client.WebUtil.DataServiceCollectionAvailable">
            <summary>
            Returns true if DataServiceCollection&lt;&gt; type is available or false otherwise.
            </summary>
        </member>
        <member name="T:System.Data.Services.Client.WebUtil.ValidatedNotNullAttribute">
            <summary>
            A workaround to a problem with FxCop which does not recognize the CheckArgumentNotNull method
            as the one which validates the argument is not null.
            </summary>
            <remarks>This has been suggested as a workaround in msdn forums by the VS team. Note that even though this is production code
            the attribute has no effect on anything else.</remarks>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientPropertyAnnotation">
            <summary>
            Represents an EDM property for client types and caches methods for the propertyInfo.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.EdmProperty">
            <summary>Back reference to the EdmProperty this annotation is part of.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.PropertyName">
            <summary>property name for debugging</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.NullablePropertyType">
            <summary>Exact property type; possibly nullable but not necessarily so.</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.PropertyType">
            <summary>type of the property</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.DictionaryValueType">
            <summary>what is the dictionary value type</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.DeclaringClrType">
            <summary>what type was this property declared on?</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.IsKnownType">
            <summary>
            Is this a known primitive/reference type or an entity/complex/collection type?
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.fieldOrPropertyGetter">
            <summary>If we have the backing field for a property we use that otherwise we use the property getter</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.propertyGetter">
            <summary>property getter</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.propertySetter">
            <summary>property setter</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.dictionarySetter">
            <summary>"set_Item" method supporting IDictionary properties</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.collectionAdd">
            <summary>"Add" method supporting ICollection&lt;&gt; properties</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.collectionRemove">
            <summary>"Remove" method supporting ICollection&lt;&gt; properties</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.collectionContains">
            <summary>"Contains" method supporting ICollection&lt;&gt; properties</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.collectionClear">
            <summary>"Clear" method supporting ICollection&lt;&gt; properties</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.collectionGenericType">
            <summary>ICollection&lt;&gt; generic type</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.isPrimitiveOrComplexCollection">
            <summary>cached value for IsPrimitiveOrComplexCollection property</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.isSpatialType">
            <summary>cached value of IsGeographyOrGeometry property</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.mimeTypeProperty">
            <summary>The other property in this type that holds the MIME type for this one</summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.#ctor(Microsoft.Data.Edm.IEdmProperty,System.Reflection.PropertyInfo,System.Reflection.FieldInfo,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            constructor
            </summary>
            <param name="edmProperty">Back reference to the EdmProperty this annotation is part of.</param>
            <param name="propertyInfo">propertyInfo instance.</param>
            <param name="backingField">FieldInfo instance for peeking initial property values.</param>
            <param name="model">The client model.</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.GetValue(System.Object)">
            <summary>
            get property value from an object
            </summary>
            <param name="instance">object to get the property value from</param>
            <returns>property value</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.GetFieldOrPropertyValue(System.Object)">
            <summary>
            get field or property value from an object
            </summary>
            <param name="instance">object to get the field or property value from</param>
            <returns>Field or property value</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.RemoveValue(System.Object,System.Object)">
            <summary>
            remove a item from the collection instance
            </summary>
            <param name="instance">collection</param>
            <param name="value">item to remove</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.SetValue(System.Object,System.Object,System.String,System.Boolean)">
            <summary>
            set property value on an object
            </summary>
            <param name="instance">object to set the property value on</param>
            <param name="value">property value</param>
            <param name="propertyName">used for open type</param>
            <param name="allowAdd">allow add to a collection if available, else allow setting collection property</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.ClearBackingICollectionInstance(System.Object)">
            <summary>
            Clears <paramref name="collectionInstance"/>.
            </summary>
            <param name="collectionInstance">ICollection instance that needs to be cleared.</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.AddValueToBackingICollectionInstance(System.Object,System.Object)">
            <summary>
            Adds value to a collection.
            </summary>
            <param name="collectionInstance">ICollection Instance to add <paramref name="value"/> to.</param>
            <param name="value">Value to be added to <paramref name="collectionInstance" />.</param>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.Model">
            <summary>
            Gets the client model.
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.MimeTypeProperty">
            <summary>The other property in this type that holds the MIME type for this one</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.EntityCollectionItemType">
            <summary>what is the nested collection element</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.IsEntityCollection">
            <summary>Is this property a collection of entities?</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.PrimitiveOrComplexCollectionItemType">
            <summary>Type of items in the primitive or complex collection.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.IsPrimitiveOrComplexCollection">
            <summary>Is this property a collection of primitive or complex types?</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.IsSpatialType">
            <summary>Returns true if the type of property is a Geography or Geometry type, otherwise returns false.</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.IsDictionary">
            <summary>Is this property a dictionary?</summary>
        </member>
        <member name="P:System.Data.Services.Client.Metadata.ClientPropertyAnnotation.IsStreamLinkProperty">
            <summary>Returns true if this property is a stream link property, otherwise false.</summary>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientTypeUtil">
            <summary>
            Utility methods for client types.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeUtil.EmptyPropertyInfoArray">
            <summary>A static empty PropertyInfo array.</summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.SetClientTypeAnnotation(Microsoft.Data.Edm.IEdmModel,Microsoft.Data.Edm.IEdmType,System.Data.Services.Client.Metadata.ClientTypeAnnotation)">
            <summary>
            Sets the single instance of <see cref="T:System.Data.Services.Client.Metadata.ClientTypeAnnotation"/> on the given instance of <paramref name="edmType"/>.
            </summary>
            <param name="model">The model the <paramref name="edmType"/> belongs to.</param>
            <param name="edmType">IEdmType instance to set the annotation on.</param>
            <param name="annotation">The annotation to set</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetClientTypeAnnotation(System.Data.Services.Client.ClientEdmModel,System.Type)">
            <summary>
            Gets the ClientTypeAnnotation for the given type.
            </summary>
            <param name="model">The model.</param>
            <param name="type">Type for which the annotation needs to be returned.</param>
            <returns>An instance of ClientTypeAnnotation containing metadata about the given type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetClientTypeAnnotation(Microsoft.Data.Edm.IEdmModel,Microsoft.Data.Edm.IEdmType)">
            <summary>
            Gets the single instance of <see cref="T:System.Data.Services.Client.Metadata.ClientTypeAnnotation"/> from the given instance of <paramref name="edmType"/>.
            </summary>
            <param name="model">The model the <paramref name="edmType"/> belongs to.</param>
            <param name="edmType">IEdmType instance to get the annotation.</param>
            <returns>Returns the single instance of <see cref="T:System.Data.Services.Client.Metadata.ClientTypeAnnotation"/> from the given instance of <paramref name="edmType"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.SetClientPropertyAnnotation(Microsoft.Data.Edm.IEdmProperty,System.Data.Services.Client.Metadata.ClientPropertyAnnotation)">
            <summary>
            Sets the given instance of <paramref name="annotation"/> to the given instance of <paramref name="edmProperty"/>.
            </summary>
            <param name="edmProperty">IEdmProperty instance to set the annotation.</param>
            <param name="annotation">Annotation instance to set.</param>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetClientPropertyAnnotation(Microsoft.Data.Edm.IEdmModel,Microsoft.Data.Edm.IEdmProperty)">
            <summary>
            Gets the single instance of ClientPropertyAnnotation from the given instance of <paramref name="edmProperty"/>.
            </summary>
            <param name="model">The model.</param>
            <param name="edmProperty">IEdmProperty instance to get the annotation.</param>
            <returns>Returns the single instance of ClientPropertyAnnotation from the given instance of <paramref name="edmProperty"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetClientTypeAnnotation(Microsoft.Data.Edm.IEdmModel,Microsoft.Data.Edm.IEdmProperty)">
            <summary>
            Gets the instance of ClientTypeAnnotation from the given instance of <paramref name="edmProperty"/>.
            </summary>
            <param name="model">The model.</param>
            <param name="edmProperty">IEdmProperty instance to get the annotation.</param>
            <returns>Returns the instance of ClientTypeAnnotation from the given instance of <paramref name="edmProperty"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.ToEdmTypeReference(Microsoft.Data.Edm.IEdmType,System.Boolean)">
            <summary>
            Returns the corresponding edm type reference for the given edm type.
            </summary>
            <param name="edmType">EdmType instance.</param>
            <param name="isNullable">A boolean value indicating whether the clr type of this edm type is nullable</param>
            <returns>Returns the corresponding edm type reference for the given edm type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.FullName(Microsoft.Data.Edm.IEdmType)">
            <summary>
            Returns the full name for the given edm type
            </summary>
            <param name="edmType">EdmType instance.</param>
            <returns>the full name of the edmType.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.IsPrimitive(Microsoft.Data.Edm.IEdmType)">
            <summary>
            Determine whether the type is primitive or primitive collection.
            </summary>
            <param name="edmType">The type to be evaluated.</param>
            <returns>True if the type is primitive or primitive collection.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetMethodForGenericType(System.Type,System.Type,System.String,System.Type@)">
            <summary>
            Returns MethodInfo instance for a generic type retrieved by using <paramref name="methodName"/> and gets
            element type for the provided <paramref name="genericTypeDefinition"/>.
            </summary>
            <param name="propertyType">starting type</param>
            <param name="genericTypeDefinition">the generic type definition to find</param>
            <param name="methodName">the method to search for</param>
            <param name="type">the element type for <paramref name="genericTypeDefinition" /> if found</param>
            <returns>element types</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetAddToCollectionDelegate(System.Type)">
            <summary>Gets a delegate that can be invoked to add an item to a collection of the specified type.</summary>
            <param name='listType'>Type of list to use.</param>
            <returns>The delegate to invoke.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetAddToCollectionMethod(System.Type,System.Type@)">
            <summary>
            Gets the Add method to add items to a collection of the specified type.
            </summary>
            <param name="collectionType">Type for the collection.</param>
            <param name="type">The element type in the collection if found; null otherwise.</param>
            <returns>The method to invoke to add to a collection of the specified type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetImplementationType(System.Type,System.Type)">
            <summary>
            get concrete type that implements the genericTypeDefinition
            </summary>
            <param name="type">starting type</param>
            <param name="genericTypeDefinition">the generic type definition to find</param>
            <returns>concrete type that implementats the generic type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.TypeIsEntity(System.Type,System.Data.Services.Client.ClientEdmModel)">
            <summary>
            Is the type an Entity Type?
            </summary>
            <param name="t">Type to examine</param>
            <param name="model">The client model.</param>
            <returns>bool indicating whether or not entity type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.TypeOrElementTypeIsEntity(System.Type)">
            <summary>
            Is the type or element type (in the case of nullableOfT or IEnumOfT) a Entity Type?
            </summary>
            <param name="type">Type to examine</param>
            <returns>bool indicating whether or not entity type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.IsDataServiceCollection(System.Type)">
            <summary>Checks whether the specified type is a DataServiceCollection type (or inherits from one).</summary>
            <param name='type'>Type to check.</param>
            <returns>true if the type inherits from DataServiceCollection; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.CanAssignNull(System.Type)">
            <summary>Whether a variable of <paramref name="type"/> can be assigned null.</summary>
            <param name="type">Type to check.</param>
            <returns>true if a variable of type <paramref name="type"/> can be assigned null; false otherwise.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetPropertiesOnType(System.Type,System.Boolean)">
            <summary>Returns the list of properties defined on <paramref name="type"/>.</summary>
            <param name="type">Type instance in question.</param>
            <param name="declaredOnly">True to to get the properties declared on <paramref name="type"/>; false to get all properties defined on <paramref name="type"/>.</param>
            <returns>Returns the list of properties defined on <paramref name="type"/>.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetKeyPropertiesOnType(System.Type)">
            <summary>
            Returns the list of key properties defined on <paramref name="type"/>; null if <paramref name="type"/> is complex.
            </summary>
            <param name="type">Type in question.</param>
            <returns>Returns the list of key properties defined on <paramref name="type"/>; null if <paramref name="type"/> is complex.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetKeyPropertiesOnType(System.Type,System.Boolean@)">
            <summary>
            Returns the list of key properties defined on <paramref name="type"/>; null if <paramref name="type"/> is complex.
            </summary>
            <param name="type">Type in question.</param>
            <param name="hasProperties">true if <paramref name="type"/> has any (declared or inherited) properties; otherwise false.</param>
            <returns>Returns the list of key properties defined on <paramref name="type"/>; null if <paramref name="type"/> is complex.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.GetMemberType(System.Reflection.MemberInfo)">
            <summary>Gets the type of the specified <paramref name="member"/>.</summary>
            <param name="member">Member to get type of (typically PropertyInfo or FieldInfo).</param>
            <returns>The type of property or field type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.IsKeyProperty(System.Reflection.PropertyInfo,System.Data.Services.Common.DataServiceKeyAttribute)">
            <summary>
            Returns the KeyKind if <paramref name="propertyInfo"/> is declared as a key in <paramref name="dataServiceKeyAttribute"/> or it follows the key naming convension.
            </summary>
            <param name="propertyInfo">Property in question.</param>
            <param name="dataServiceKeyAttribute">DataServiceKeyAttribute instance.</param>
            <returns>Returns the KeyKind if <paramref name="propertyInfo"/> is declared as a key in <paramref name="dataServiceKeyAttribute"/> or it follows the key naming convension.</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.IsConstructedGeneric(System.Type,System.Type)">
            <summary>
            Checks whether the specified <paramref name="type"/> is a
            closed constructed type of the generic type.
            </summary>
            <param name="type">Type to check.</param>
            <param name="genericTypeDefinition">Generic type for checkin.</param>
            <returns>true if <paramref name="type"/> is a constructed type of <paramref name="genericTypeDefinition"/>.</returns>
            <remarks>The check is an immediate check; no inheritance rules are applied.</remarks>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeUtil.IsOverride(System.Type,System.Reflection.PropertyInfo)">
            <summary>
            Determines whether the <paramref name="propertyInfo"/> declared on <paramref name="type"/>
            overrides a (virtual/abstract) property of a base type.
            </summary>
            <param name="type">The declaring type of the property.</param>
            <param name="propertyInfo">The property to check.</param>
            <returns>true if <paramref name="propertyInfo"/> overrides a property on a base types; otherwise false.</returns>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientTypeUtil.KeyKind">
            <summary>
            Enumeration for the kind of key
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeUtil.KeyKind.NotKey">
            <summary>If this is not a key </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeUtil.KeyKind.Id">
            <summary> If the key property name was equal to ID </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeUtil.KeyKind.TypeNameId">
            <summary> If the key property name was equal to TypeName+ID </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeUtil.KeyKind.AttributedKey">
            <summary> if the key property was attributed </summary>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientTypeCache">
            <summary>
            Caches wire type names and their mapped client CLR types.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeCache.namedTypes">
            <summary>cache &lt;T&gt; and wireName to mapped type</summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeCache.ResolveFromName(System.String,System.Type)">
            <summary>
            resolve the wireName/userType pair to a CLR type
            </summary>
            <param name="wireName">type name sent by server</param>
            <param name="userType">type passed by user or on propertyType from a class</param>
            <returns>mapped clr type</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeCache.ResolveSubclass(System.String,System.Type,System.Type,System.Type@)">
            <summary>
            is the type a visible subclass with correct name
            </summary>
            <param name="wireClassName">type name from server</param>
            <param name="userType">the type from user for materialization or property type</param>
            <param name="type">type being tested</param>
            <param name="existing">the previously discovered matching type</param>
            <exception cref="T:System.InvalidOperationException">if the mapping is ambiguous</exception>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientTypeCache.TypeName">
            <summary>type + wireName combination</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeCache.TypeName.Type">
            <summary>type</summary>
        </member>
        <member name="F:System.Data.Services.Client.Metadata.ClientTypeCache.TypeName.Name">
            <summary>type name from server</summary>
        </member>
        <member name="T:System.Data.Services.Client.Metadata.ClientTypeCache.TypeNameEqualityComparer">
            <summary>equality comparer for TypeName</summary>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeCache.TypeNameEqualityComparer.Equals(System.Data.Services.Client.Metadata.ClientTypeCache.TypeName,System.Data.Services.Client.Metadata.ClientTypeCache.TypeName)">
            <summary>equality comparer for TypeName</summary>
            <param name="x">left type</param>
            <param name="y">right type</param>
            <returns>true if x and y are equal</returns>
        </member>
        <member name="M:System.Data.Services.Client.Metadata.ClientTypeCache.TypeNameEqualityComparer.GetHashCode(System.Data.Services.Client.Metadata.ClientTypeCache.TypeName)">
            <summary>compute hashcode for TypeName</summary>
            <param name="obj">object to compute hashcode for</param>
            <returns>computed hashcode</returns>
        </member>
        <member name="T:System.Data.Services.Client.PlatformHelper">
            <summary>
            Helper methods that provide a common API surface on all platforms.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PlatformHelper.EmptyTypes">
            <summary>
            Use this instead of Type.EmptyTypes.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PlatformHelper.UriSchemeHttp">
            <summary>
            Use this instead of Uri.UriSchemeHttp.
            </summary>
        </member>
        <member name="F:System.Data.Services.Client.PlatformHelper.UriSchemeHttps">
            <summary>
            Use this instead of Uri.UriSchemeHttps.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetAssembly(System.Type)">
            <summary>
            Replacement for Type.Assembly.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsValueType(System.Type)">
            <summary>
            Replacement for Type.IsValueType.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsGenericParameter(System.Type)">
            <summary>
            Replacement for Type.IsGenericParameter.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsAbstract(System.Type)">
            <summary>
            Replacement for Type.IsAbstract.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsGenericType(System.Type)">
            <summary>
            Replacement for Type.IsGenericType.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsGenericTypeDefinition(System.Type)">
            <summary>
            Replacement for Type.IsGenericTypeDefinition.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsVisible(System.Type)">
            <summary>
            Replacement for Type.IsVisible.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsInterface(System.Type)">
            <summary>
            Replacement for Type.IsInterface.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsClass(System.Type)">
            <summary>
            Replacement for Type.IsClass.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsEnum(System.Type)">
            <summary>
            Replacement for Type.IsEnum.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetBaseType(System.Type)">
            <summary>
            Replacement for Type.BaseType.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.ContainsGenericParameters(System.Type)">
            <summary>
            Replacement for Type.ContainsGenericParameters.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.AsReadOnly``1(``0[])">
            <summary>
            Replacement for Array.AsReadOnly(T[]).
            </summary>
            <typeparam name="T">Type of items in the array.</typeparam>
            <param name="array">Array to use to create the ReadOnlyCollection.</param>
            <returns>ReadOnlyCollection containing the specified array items.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.ConvertStringToDateTime(System.String)">
            <summary>
            Converts a string to a DateTime.
            </summary>
            <param name="text">String to be converted.</param>
            <returns>See documentation for method being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.ConvertStringToDateTimeOffset(System.String)">
            <summary>
            Converts a string to a DateTimeOffset.
            </summary>
            <param name="text">String to be converted.</param>
            <returns>See documentation for method being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.AddSecondsPaddingIfMissing(System.String)">
            <summary>
            Adds the seconds padding as zeros to the date time string if seconds part is missing.
            </summary>
            <param name="text">String that needs seconds padding</param>
            <returns>DateTime string after adding seconds padding</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.ConvertDateTimeToStringInternal(System.DateTime)">
            <summary>
            Converts the DateTime to a string, internal method.
            </summary>
            <param name="dateTime">DateTime to convert to String.</param>
            <returns>Converted String.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.ConvertDateTimeToString(System.DateTime)">
            <summary>
            Converts a DateTime to a string.
            </summary>
            <param name="dateTime">DateTime to be converted.</param>
            <returns>See documentation for property being accessed in the body of the method.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetTypeOrThrow(System.String)">
            <summary>
            Gets the specified type.
            </summary>
            <param name="typeName">Name of the type to get.</param>
            <exception cref="T:System.TypeLoadException">Throws if the type could not be found.</exception>
            <returns>Type instance that represents the specified type name.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetTypeCode(System.Type)">
            <summary>
            Gets the TypeCode for the specified type.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>TypeCode representing the specified type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetUnicodeCategory(System.Char)">
            <summary>
            Gets the Unicode Category of the specified character.
            </summary>
            <param name="c">Character to get category of.</param>
            <returns>Category of the character.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsProperty(System.Reflection.MemberInfo)">
            <summary>
            Replacement for usage of MemberInfo.MemberType property.
            </summary>
            <param name="member">MemberInfo on which to access this method.</param>
            <returns>True if the specified member is a property, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsPrimitive(System.Type)">
            <summary>
            Replacement for usage of Type.IsPrimitive property.
            </summary>
            <param name="type">Type on which to access this method.</param>
            <returns>True if the specified type is primitive, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsSealed(System.Type)">
            <summary>
            Replacement for usage of Type.IsSealed property.
            </summary>
            <param name="type">Type on which to access this method.</param>
            <returns>True if the specified type is sealed, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.IsMethod(System.Reflection.MemberInfo)">
            <summary>
            Replacement for usage of MemberInfo.MemberType property.
            </summary>
            <param name="member">MemberInfo on which to access this method.</param>
            <returns>True if the specified member is a method, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.AreMembersEqual(System.Reflection.MemberInfo,System.Reflection.MemberInfo)">
            <summary>
            Compares two methodInfos and returns true if they represent the same method.
            Need this for Windows Phone as the method Infos of the same method are not always instance equivalent.
            </summary>
            <param name="member1">MemberInfo to compare.</param>
            <param name="member2">MemberInfo to compare.</param>
            <returns>True if the specified member is a method, otherwise false.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetPublicProperties(System.Type,System.Boolean)">
            <summary>
            Gets public properties for the specified type.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <param name="instanceOnly">True if method should return only instance properties, false if it should return both instance and static properties.</param>
            <returns>Enumerable of public properties for the type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetPublicProperties(System.Type,System.Boolean,System.Boolean)">
            <summary>
            Gets public properties for the specified type.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <param name="instanceOnly">True if method should return only instance properties, false if it should return both instance and static properties.</param>
            <param name="declaredOnly">True if method should return only properties that are declared on the type, false if it should return properties declared on the type as well as those inherited from any base types.</param>
            <returns>Enumerable of public properties for the type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetInstanceConstructors(System.Type,System.Boolean)">
            <summary>
            Gets instance constructors for the specified type.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <param name="isPublic">True if method should return only public constructors, false if it should return only non-public constructors.</param>
            <returns>Enumerable of instance constructors for the specified type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetInstanceConstructor(System.Type,System.Boolean,System.Type[])">
            <summary>
            Gets a instance constructor for the type that takes the specified argument types.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <param name="isPublic">True if method should search only public constructors, false if it should search only non-public constructors.</param>
            <param name="argTypes">Array of argument types for the constructor.</param>
            <returns>ConstructorInfo for the constructor with the specified characteristics if found, otherwise null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.TryGetMethod(System.Type,System.String,System.Type[],System.Reflection.MethodInfo@)">
            <summary>
            Tries to the get method from the type, returns null if not found.
            </summary>
            <param name="type">The type.</param>
            <param name="name">The name.</param>
            <param name="parameterTypes">The parameter types.</param>
            <returns>Returns True if found.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetMethod(System.Type,System.String,System.Boolean,System.Boolean)">
            <summary>
            Gets a method on the specified type.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <param name="name">Name of the method on the type.</param>
            <param name="isPublic">True if method should search only public methods, false if it should search only non-public methods.</param>
            <param name="isStatic">True if method should search only static methods, false if it should search only instance methods.</param>
            <returns>MethodInfo for the method with the specified characteristics if found, otherwise null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetMethod(System.Type,System.String,System.Type[],System.Boolean,System.Boolean)">
            <summary>
            Gets a method on the specified type.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <param name="name">Name of the method on the type.</param>
            <param name="types">Argument types for the method.</param>
            <param name="isPublic">True if method should search only public methods, false if it should search only non-public methods.</param>
            <param name="isStatic">True if method should search only static methods, false if it should search only instance methods.</param>
            <returns>MethodInfo for the method with the specified characteristics if found, otherwise null.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetPublicStaticMethods(System.Type)">
            <summary>
            Gets all public static methods for a type.
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>Enumerable of all public static methods for the specified type.</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.GetNonPublicNestedTypes(System.Type)">
            <summary>
            Replacement for Type.GetNestedTypes(BindingFlags.NonPublic)
            </summary>
            <param name="type">Type on which to call this helper method.</param>
            <returns>All types nested in the current type</returns>
        </member>
        <member name="M:System.Data.Services.Client.PlatformHelper.CreateCompiled(System.String,System.Text.RegularExpressions.RegexOptions)">
            <summary>
            Creates a Compiled Regex expression
            </summary>
            <param name="pattern">Pattern to match.</param>
            <param name="options">Options to use.</param>
            <returns>Regex expression to match supplied patter</returns>
            <remarks>Is marked as compiled option only in platforms otherwise RegexOption.None is used</remarks>
        </member>
        <member name="T:AssemblyRef">
            <summary>
            Sets public key string for friend assemblies.
            </summary>
        </member>
        <member name="F:AssemblyRef.ProductPublicKey">
            <summary>ProductPublicKey is an official MS supported public key for external releases.</summary>
        </member>
        <member name="F:AssemblyRef.TestPublicKey">
            <summary>TestPublicKey is an unsupported strong key for testing and internal use only</summary>
        </member>
        <member name="F:AssemblyRef.ProductPublicKeyToken">
            <summary>Dont know what this is</summary>
        </member>
        <member name="F:AssemblyRef.OfficialSilverLightPublicKeyToken">
            <summary>Used for comparison with external assemblies for silverlight like Microsoft.VisualBasic.</summary>
        </member>
        <member name="F:AssemblyRef.OfficialDesktopPublicKeyToken">
            <summary>Used for comparison with external assemblies for desktop like Microsoft.VisualBasic.</summary>
        </member>
        <member name="T:System.Data.Services.Client.TextRes">
             <summary>
                AutoGenerated resource class. Usage:
             
                    string s = TextRes.GetString(TextRes.MyIdenfitier);
             </summary>
        </member>
        <member name="T:System.Data.Services.Client.Strings">
            <summary>
               Strongly-typed and parameterized string resources.
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Batch_ExpectedContentType(System.Object)">
            <summary>
            A string like "The expected content type for a batch requests is "multipart/mixed;boundary=batch" not "{0}"."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Batch_ExpectedResponse(System.Object)">
            <summary>
            A string like "The POST request expected a response with content. ID={0}"
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Batch_UnexpectedContent(System.Object)">
            <summary>
            A string like "The web response contained unexpected sections. ID={0}"
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_ResolveEntitySetOrBaseUriRequired(System.Object)">
            <summary>
            A string like "The ResolveEntitySet function must return a non-null Uri for the EntitySet '{0}', otherwise you must set the BaseUri property."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_CannotConvertKey(System.Object)">
            <summary>
            A string like "Unable to convert value '{0}' into a key string for a URI."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_InternalError(System.Object)">
            <summary>
            A string like "System.Data.Services.Client internal error {0}."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_SetSaveStreamWithoutNamedStreamEditLink(System.Object)">
            <summary>
            A string like "The stream named '{0}' cannot be modified because it does not have an edit-media link. Make sure that the stream name is correct and that an edit-media link for this stream is included in the entry element in the response."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_PropertyNotSupportedForMaxDataServiceVersionGreaterThanX(System.Object,System.Object)">
            <summary>
            A string like "The property '{0}' is not supported when MaxProtocolVersion is greater than '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_NoContentTypeForMediaLink(System.Object,System.Object)">
            <summary>
            A string like "Media link object of type '{0}' is configured to use the MIME type specified in the property '{1}'. However, that property's value is null or empty."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_VersionNotSupported(System.Object,System.Object)">
            <summary>
            A string like "Response version '{0}' is not supported. The only supported versions are: {1}."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_ResponseVersionIsBiggerThanProtocolVersion(System.Object,System.Object)">
            <summary>
            A string like "The response version is {0}, but the MaxProtocolVersion of the data service context is set to {1}. Set the MaxProtocolVersion to the version required by the response, and then retry the request. If the client does not support the required protocol version, then upgrade the client."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_RequestVersionIsBiggerThanProtocolVersion(System.Object,System.Object)">
            <summary>
            A string like "The request requires that version {0} of the protocol be used, but the MaxProtocolVersion of the data service context is set to {1}. Set the MaxProtocolVersion to the higher version, and then retry the operation."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_MLEWithoutSaveStream(System.Object)">
            <summary>
            A string like "The entity type {0} is marked with MediaEntry attribute but no save stream was set for the entity."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_SetSaveStreamOnMediaEntryProperty(System.Object)">
            <summary>
            A string like "Can't use SetSaveStream on entity with type {0} which has a media entry property defined."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_SetSaveStreamOnInvalidEntityState(System.Object)">
            <summary>
            A string like "Calling SetSaveStream on an entity with state '{0}' is not allowed."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_EntityDoesNotContainNamedStream(System.Object)">
            <summary>
            A string like "The entity does not have a stream named '{0}'. Make sure that the name of the stream is correct."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_MissingSelfAndEditLinkForNamedStream(System.Object)">
            <summary>
            A string like "There is no self-link or edit-media link for the stream named '{0}'. Make sure that either the self-link or edit-media link is specified for this stream."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_NullKeysAreNotSupported(System.Object)">
            <summary>
            A string like "The serialized resource has a null value in key member '{0}'. Null values are not supported in key members."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Context_CannotChangeStateIfAdded(System.Object)">
            <summary>
            A string like "An entity in the 'Added' state cannot be changed to '{0}', it can only be changed to 'Detached'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataServiceClientFormat_JsonVerboseUnsupported(System.Object)">
            <summary>
            A string like "The content-type value '{0}' is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Collection_NullCollectionReference(System.Object,System.Object)">
            <summary>
            A string like "{0}.{1} must return a non-null open property collection."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_MissingOpenProperty(System.Object,System.Object)">
            <summary>
            A string like "The open object property '{0}:{1}' is not defined."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Clienttype_MultipleOpenProperty(System.Object)">
            <summary>
            A string like "{0} has multiple definitions for OpenObjectAttribute."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_MissingProperty(System.Object,System.Object)">
            <summary>
            A string like "The closed type {0} does not have a corresponding {1} settable property."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_KeysMustBeSimpleTypes(System.Object)">
            <summary>
            A string like "{0} has key properties declared on a non-simple type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_KeysOnDifferentDeclaredType(System.Object)">
            <summary>
            A string like "{0} has key properties declared at different levels within its type hierarchy."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_MissingMimeTypeProperty(System.Object,System.Object)">
            <summary>
            A string like "Type '{0}' has a MimeTypeProperty attribute that references the MIME type property '{1}'. However, this type does not have a property '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_MissingMimeTypeDataProperty(System.Object,System.Object)">
            <summary>
            A string like "Type '{0}' has a MimeTypeProperty attribute that references the data property '{1}'. However, this type does not have a property '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_MissingMediaEntryProperty(System.Object,System.Object)">
            <summary>
            A string like "Type '{0}' has a MediaEntry attribute that references a property called '{1}'. However, this type does not have a property '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_NoSettableFields(System.Object)">
            <summary>
            A string like "The type '{0}' has no settable properties."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_NullOpenProperties(System.Object)">
            <summary>
            A string like "The open type property '{0}' returned a null instance."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_Ambiguous(System.Object,System.Object)">
            <summary>
            A string like "Resolving type from '{0}' that inherits from '{1}' is ambiguous."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_UnsupportedType(System.Object)">
            <summary>
            A string like "The type '{0}' is not supported by the client library."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_CollectionPropertyNotSupportedInV2AndBelow(System.Object,System.Object)">
            <summary>
            A string like "The type '{0}' has a property '{1}' which is a collection property. Collection properties are only supported in 'V3' version of the protocol and above."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientType_MultipleTypesWithSameName(System.Object)">
            <summary>
            A string like "Multiple types were found with the same name '{0}'. Type names must be unique."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.WebUtil_CollectionTypeNotSupportedInV2OrBelow(System.Object)">
            <summary>
            A string like "The type '{0}' is a collection type. Collection types are only supported in 'V3' version of the protocol and above."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.WebUtil_TypeMismatchInCollection(System.Object)">
            <summary>
            A string like "An item in the collection property '{0}' is not of the correct type. All items in the collection property must be of the collection item type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.WebUtil_TypeMismatchInNonPropertyCollection(System.Object)">
            <summary>
            A string like "A collection of item type '{0}' has an item which is not of the correct type. All items in the collection must be of the collection item type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ClientTypeCache_NonEntityTypeCannotContainEntityProperties(System.Object,System.Object)">
            <summary>
            A string like "The property '{0}' is of entity type and it cannot be a property of the type '{1}', which is not of entity type. Only entity types can contain navigation properties."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Deserialize_Current(System.Object,System.Object)">
            <summary>
            A string like "The current value '{1}' type is not compatible with the expected '{0}' type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Deserialize_MismatchAtomLinkFeedPropertyNotCollection(System.Object)">
            <summary>
            A string like "Error processing response stream. Atom payload has a feed and the property '{0}' is not a collection."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Deserialize_MismatchAtomLinkEntryPropertyIsCollection(System.Object)">
            <summary>
            A string like "Error processing response stream. Atom payload has an entry and the property '{0}' is a collection."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Deserialize_ServerException(System.Object)">
            <summary>
            A string like "Error processing response stream. Server failed with following message:\r\n{0}"
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Collection_NullCollectionNotSupported(System.Object)">
            <summary>
            A string like "The value of the property '{0}' is null. Properties that are a collection type of primitive or complex types cannot be null."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Collection_NullNonPropertyCollectionNotSupported(System.Object)">
            <summary>
            A string like "The value of the collection of item type '{0}' is null. A collection cannot have a null value."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EntityDescriptor_MissingSelfEditLink(System.Object)">
            <summary>
            A string like "The entity with identity '{0}' does not have a self-link or an edit-link associated with it. Please make sure that the entity has either a self-link or an edit-link associated with it."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmSourceTree_InvalidSourcePath(System.Object,System.Object)">
            <summary>
            A string like "The PropertyName property value '{1}' of EntityPropertyMappingAttribute on type '{0}' is not valid."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmSourceTree_DuplicateEpmAttrsWithSameSourceName(System.Object,System.Object)">
            <summary>
            A string like "The PropertyName property value '{0}' on more than one EntityPropertyMappingAttribute on resource type '{1}' is provided more than once."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmSourceTree_EndsWithNonPrimitiveType(System.Object)">
            <summary>
            A string like "The property '{0}' provided at the end of the PropertyName property of the EntityPropertyMappingAttribute on a resource type is not a primitive type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmSourceTree_InaccessiblePropertyOnType(System.Object,System.Object)">
            <summary>
            A string like "The property '{0}' on type '{1}' is not present or is inaccessible."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmSourceTree_NamedStreamCannotBeMapped(System.Object,System.Object)">
            <summary>
            A string like "The property '{0}' on the type '{1}' is of the type 'DataServiceStreamLink'. Stream properties cannot be mapped with an entity property mapping."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmSourceTree_SpatialTypeCannotBeMapped(System.Object,System.Object)">
            <summary>
            A string like "The property '{0}' on the type '{1}' is a spatial type. Spatial type properties cannot be mapped with an entity property mapping."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmSourceTree_CollectionPropertyCannotBeMapped(System.Object,System.Object)">
            <summary>
            A string like "The property '{0}' on the type '{1}' is a collection. Collection properties cannot be mapped with an entity property mapping."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmTargetTree_InvalidTargetPath(System.Object)">
            <summary>
            A string like "The TargetName property path '{0}' set in the EntityPropertyMappingAttribute is not valid."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmTargetTree_AttributeInMiddle(System.Object)">
            <summary>
            A string like "The attribute identifier '{0}' is provided in the middle of the TargetName property of EntityPropertyMappingAttribute."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EpmTargetTree_DuplicateEpmAttrsWithSameTargetName(System.Object,System.Object,System.Object,System.Object)">
            <summary>
            A string like "The TargetName property '{0}' on more than one EntityPropertyMappingAttribute on resource type '{1}' have the same value. Conflicting properties are '{2}' and '{3}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.HttpProcessUtility_EncodingNotSupported(System.Object)">
            <summary>
            A string like "Character set '{0}' is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.HttpProcessUtility_EscapeCharWithoutQuotes(System.Object)">
            <summary>
            A string like "Value for MIME type parameter '{0}' is incorrect because it contained escape characters even though it was not quoted."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.HttpProcessUtility_EscapeCharAtEnd(System.Object)">
            <summary>
            A string like "Value for MIME type parameter '{0}' is incorrect because it terminated with escape character. Escape characters must always be followed by a character in a parameter value."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.HttpProcessUtility_ClosingQuoteNotFound(System.Object)">
            <summary>
            A string like "Value for MIME type parameter '{0}' is incorrect because the closing quote character could not be found while the parameter value started with a quote character."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_UnsupportedExpression(System.Object)">
            <summary>
            A string like "The expression type {0} is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CouldNotConvert(System.Object)">
            <summary>
            A string like "Could not convert constant {0} expression to string."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_MethodNotSupported(System.Object)">
            <summary>
            A string like "The method '{0}' is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_UnaryNotSupported(System.Object)">
            <summary>
            A string like "The unary operator '{0}' is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_BinaryNotSupported(System.Object)">
            <summary>
            A string like "The binary operator '{0}' is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_ConstantNotSupported(System.Object)">
            <summary>
            A string like "The constant for '{0}' is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_MemberAccessNotSupported(System.Object)">
            <summary>
            A string like "The member access of '{0}' is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CantCastToUnsupportedPrimitive(System.Object)">
            <summary>
            A string like "Can't cast to unsupported type '{0}'"
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CantTranslateExpression(System.Object)">
            <summary>
            A string like "The expression {0} is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_TranslationError(System.Object)">
            <summary>
            A string like "Error translating Linq expression to URI: {0}"
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CantAddDuplicateQueryOption(System.Object)">
            <summary>
            A string like "Can't add duplicate query option '{0}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CantAddAstoriaQueryOption(System.Object)">
            <summary>
            A string like "Can't add query option '{0}' because it would conflict with the query options from the translated Linq expression."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CantAddQueryOptionStartingWithDollarSign(System.Object)">
            <summary>
            A string like "Can't add query option '{0}' because it begins with reserved character '$'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CantReferToPublicField(System.Object)">
            <summary>
            A string like "Referencing public field '{0}' not supported in query option expression. Use public property instead."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_QueryOptionOutOfOrder(System.Object,System.Object)">
            <summary>
            A string like "The {0} query option cannot be specified after the {1} query option."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_ProjectionMemberAssignmentMismatch(System.Object,System.Object,System.Object)">
            <summary>
            A string like "Cannot initialize an instance of entity type '{0}' because '{1}' and '{2}' do not refer to the same source entity."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_InvalidExpressionInNavigationPath(System.Object)">
            <summary>
            A string like "The expression '{0}' is not a valid expression for navigation path. The only supported operations inside the lambda expression body are MemberAccess and TypeAs. The expression must contain at least one MemberAccess and it cannot end with TypeAs."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_ExpressionNotSupportedInProjectionToEntity(System.Object,System.Object)">
            <summary>
            A string like "Initializing instances of the entity type {0} with the expression {1} is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_ExpressionNotSupportedInProjection(System.Object,System.Object)">
            <summary>
            A string like "Constructing or initializing instances of the type {0} with the expression {1} is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_PropertyNamesMustMatchInProjections(System.Object,System.Object)">
            <summary>
            A string like "Cannot assign the value from the {0} property to the {1} property. When projecting results into a entity type, the property names of the source type and the target type must match for the properties being projected."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CollectionPropertyNotSupportedInOrderBy(System.Object)">
            <summary>
            A string like "The collection property '{0}' cannot be used in an 'orderby' query expression. Collection properties are not supported by the 'orderby' query option."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CollectionPropertyNotSupportedInWhere(System.Object)">
            <summary>
            A string like "The collection property '{0}' cannot be used in a 'where' query expression. Collection properties are only supported as the source of 'any' or 'all' methods in a 'where' query option."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_CollectionMemberAccessNotSupportedInNavigation(System.Object)">
            <summary>
            A string like "Navigation to members of the collection property '{0}' in a 'select' query expression is not supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_LinkPropertyNotSupportedInExpression(System.Object)">
            <summary>
            A string like "The property '{0}' of type 'DataServiceStreamLink' cannot be used in 'where' or 'orderby' query expressions. Properties of type 'DataServiceStreamLink' are not supported by these query options."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_ExpressionCannotEndWithTypeAs(System.Object,System.Object)">
            <summary>
            A string like "Unsupported expression '{0}' in '{1}' method. Expression cannot end with TypeAs."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_MethodNotSupportedForMaxDataServiceVersionLessThanX(System.Object,System.Object)">
            <summary>
            A string like "The method '{0}' is not supported when MaxProtocolVersion is less than '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_TypeAsArgumentNotEntityType(System.Object)">
            <summary>
            A string like "The type '{0}' is not an entity type. The target type for a TypeAs operator must be an entity type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_InvalidSourceForAnyAll(System.Object)">
            <summary>
            A string like "The source parameter for the '{0}' method has to be either a navigation or a collection property."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ALinq_AnyAllNotSupportedInOrderBy(System.Object)">
            <summary>
            A string like "The method '{0}' is not supported by the 'orderby' query option."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_DataServiceCollectionArgumentMustHaveEntityType(System.Object)">
            <summary>
            A string like "The DataServiceCollection to be tracked must contain entity typed elements with at least one key property. The element type '{0}' does not have any key property."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_CollectionPropertySetterValueHasObserver(System.Object,System.Object)">
            <summary>
            A string like "Setting an instance of DataServiceCollection to an entity property is disallowed if the instance is already being tracked. Error occurred on property '{0}' for entity type '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_DataServiceCollectionChangedUnknownActionCollection(System.Object)">
            <summary>
            A string like "Unexpected action '{0}' on the OnCollectionChanged event raised by DataServiceCollection."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_CollectionChangedUnknownActionCollection(System.Object,System.Object)">
            <summary>
            A string like "Unexpected action '{0}' on the OnCollectionChanged event raised by a collection object of type '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_BindingOperation_ArrayItemNull(System.Object)">
            <summary>
            A string like "Null values are disallowed during '{0}' operations on DataServiceCollection."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_BindingOperation_ArrayItemNotEntity(System.Object)">
            <summary>
            A string like "A value provided during '{0}' operation on DataServiceCollection is not of an entity type with key."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_Util_UnknownEntitySetName(System.Object)">
            <summary>
            A string like "Entity set name has not been provided for an entity of type '{0}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_EntityAlreadyInCollection(System.Object)">
            <summary>
            A string like "An attempt was made to add entity of type '{0}' to a collection in which the same entity already exists."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_NotifyPropertyChangedNotImpl(System.Object)">
            <summary>
            A string like "An attempt to track an entity or complex type failed because the entity or complex type '{0}' does not implement the INotifyPropertyChanged interface."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_NotifyCollectionChangedNotImpl(System.Object)">
            <summary>
            A string like "An attempt to track an entity or complex type failed because the entity or complex type contains a collection property of type '{0}' that does not implement the INotifyCollectionChanged interface."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_ComplexObjectAssociatedWithMultipleEntities(System.Object)">
            <summary>
            A string like "An attempt to track a complex object of type '{0}' failed because the complex object is already being tracked."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.DataBinding_CollectionAssociatedWithMultipleEntities(System.Object)">
            <summary>
            A string like "An attempt to track a collection object of type '{0}' failed because the collection object is already being tracked."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_CannotAssignNull(System.Object,System.Object)">
            <summary>
            A string like "The null value from property '{0}' cannot be assigned to a type '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_EntryIntoCollectionMismatch(System.Object,System.Object)">
            <summary>
            A string like "An entry of type '{0}' cannot be added to a collection that contains instances of type '{1}'. This may occur when an existing entry of a different type has the same identity value or when the same entity is projected into two different types in a single query."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_EntryToAccessIsNull(System.Object)">
            <summary>
            A string like "An entry returned by the navigation property '{0}' is null and cannot be initialized. You should check for a null value before accessing this property."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_EntryToInitializeIsNull(System.Object)">
            <summary>
            A string like "An entry that contains the data required to create an instance of type '{0}' is null and cannot be initialized. You should check for a null value before accessing this entry."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_ProjectEntityTypeMismatch(System.Object,System.Object,System.Object)">
            <summary>
            A string like "An entity of type '{0}' cannot be projected because there is already an instance of type '{1}' for '{2}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_PropertyMissing(System.Object)">
            <summary>
            A string like "The expected property '{0}' could not be found while processing an entry. Check for null before accessing this property."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_PropertyNotExpectedEntry(System.Object)">
            <summary>
            A string like "Property '{0}' is not an entity."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_NoParameterlessCtorForCollectionProperty(System.Object,System.Object)">
            <summary>
            A string like "Collection property '{0}' cannot be created because the type '{1}' does not have a public parameterless constructor."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_InvalidCollectionItem(System.Object)">
            <summary>
            A string like "The element '{0}' is not a valid collection item. The name of the collection item element must be 'element' and must belong to the 'http://schemas.microsoft.com/ado/2007/08/dataservices' namespace."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_InvalidEntityType(System.Object)">
            <summary>
            A string like "There is a type mismatch between the client and the service. Type '{0}' is an entity type, but the type in the response payload does not represent an entity type. Please ensure that types defined on the client match the data model of the service, or update the service reference on the client."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_InvalidNonEntityType(System.Object)">
            <summary>
            A string like "There is a type mismatch between the client and the service. Type '{0}' is not an entity type, but the type in the response payload represents an entity type. Please ensure that types defined on the client match the data model of the service, or update the service reference on the client."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_CollectionExpectedCollection(System.Object)">
            <summary>
            A string like "Materialization of top level collection expected ICollection&lt;&gt;, but actual type was {0}."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_InvalidResponsePayload(System.Object)">
            <summary>
            A string like "The response payload is a not a valid response payload. Please make sure that the top level element is a valid Atom or JSON element or belongs to '{0}' namespace."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_InvalidContentTypeEncountered(System.Object)">
            <summary>
            A string like "The response content type '{0}' is not currently supported."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_MaterializationTypeError(System.Object)">
            <summary>
            A string like "Cannot materialize the results into a collection type '{0}' because it does not have a parameterless constructor."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.AtomMaterializer_TypeShouldBeCollectionError(System.Object)">
            <summary>
            A string like "Cannot materialize a collection of a primitives or complex without the type '{0}' being a collection."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Serializer_LoopsNotAllowedInComplexTypes(System.Object)">
            <summary>
            A string like "A circular loop was detected while serializing the property '{0}'. You must make sure that loops are not present in properties that return a collection or complex type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Serializer_LoopsNotAllowedInNonPropertyComplexTypes(System.Object)">
            <summary>
            A string like "A circular loop was detected while serializing the complex type '{0}'. You must make sure that loops are not present in a collection or a complex type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Serializer_InvalidCollectionParamterItemType(System.Object,System.Object)">
            <summary>
            A string like "The operation parameter named '{0}' has a collection item of Edm type kind '{1}'. A collection item must be either a primitive type or a complex Edm type kind."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Serializer_NullCollectionParamterItemValue(System.Object)">
            <summary>
            A string like "The operation parameter named '{0}' has a null collection item. The items of a collection must not be null."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Serializer_InvalidParameterType(System.Object,System.Object)">
            <summary>
            A string like "The operation parameter named '{0}' was of Edm type kind '{1}'. An operation parameter must be either a primitive type, a complex type or a collection of primitive or complex types."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.Serializer_UriDoesNotContainParameterAlias(System.Object)">
            <summary>
            A string like "The parameter alias '{0}' was not present in the request URI. All parameters passed as alias must be present in the request URI."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.General_InternalError(System.Object)">
            <summary>
            A string like "An internal error '{0}' occurred."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ODataMetadataBuilder_MissingEntitySetUri(System.Object)">
            <summary>
            A string like "The entity set '{0}' doesn't have the 'OData.EntitySetUri' annotation. This annotation is required."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ODataMetadataBuilder_MissingSegmentForEntitySetUriSuffix(System.Object,System.Object)">
            <summary>
            A string like "The entity set '{0}' has a URI '{1}' which has no path segments. An entity set URI suffix cannot be appended to a URI without path segments."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.ODataMetadataBuilder_MissingEntityInstanceUri(System.Object)">
            <summary>
            A string like "Neither the 'OData.EntityInstanceUri' nor the 'OData.EntitySetUriSuffix' annotation was found for entity set '{0}'. One of these annotations is required."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EdmValueUtils_UnsupportedPrimitiveType(System.Object)">
            <summary>
            A string like "The type '{0}' was found for a primitive value. In OData, the type '{0}' is not a supported primitive type."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EdmValueUtils_IncorrectPrimitiveTypeKind(System.Object,System.Object,System.Object)">
            <summary>
            A string like "Incompatible primitive type kinds were found. The type '{0}' was found to be of kind '{2}' instead of the expected kind '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EdmValueUtils_IncorrectPrimitiveTypeKindNoTypeName(System.Object,System.Object)">
            <summary>
            A string like "Incompatible primitive type kinds were found. Found type kind '{0}' instead of the expected kind '{1}'."
            </summary>
        </member>
        <member name="M:System.Data.Services.Client.Strings.EdmValueUtils_CannotConvertTypeToClrValue(System.Object)">
            <summary>
            A string like "A value with primitive kind '{0}' cannot be converted into a primitive object value."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Batch_IncompleteResponseCount">
            <summary>
            A string like "Not all requests in the batch had a response."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BaseUri">
            <summary>
            A string like "Expected an absolute, well formed http URL without a query or fragment."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BaseUriRequired">
            <summary>
            A string like "You must set the BaseUri property before you perform this operation."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_ResolveReturnedInvalidUri">
            <summary>
            A string like "The Uri that is returned by the ResolveEntitySet function must be an absolute, well-formed URL with an "http" or "https" scheme name and without any query strings or fragment identifiers."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_RequestUriIsRelativeBaseUriRequired">
            <summary>
            A string like "Because the requestUri is a relative Uri, you must set the BaseUri property on the DataServiceContext."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_TrackingExpectsAbsoluteUri">
            <summary>
            A string like "The identity value specified by either the Atom id element or the DataServiceId header must be an absolute URI."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_LocationHeaderExpectsAbsoluteUri">
            <summary>
            A string like "The 'Location' header value specified in the response must be an absolute URI."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_LinkResourceInsertFailure">
            <summary>
            A string like "One of the link's resources failed to insert."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BatchExecuteError">
            <summary>
            A string like "An error occurred for this query during batch execution. See the inner exception for details."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_EntitySetName">
            <summary>
            A string like "Expected a relative URL path without query or fragment."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BatchNotSupportedForNamedStreams">
            <summary>
            A string like "Changes cannot be saved as a batch when an entity has one or more streams associated with it. Retry the SaveChanges operation without enabling the SaveChangesOptions.Batch and the SaveChangesOptions.BatchWithIndependentOperations options."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Content_EntityWithoutKey">
            <summary>
            A string like "This operation requires the entity be of an Entity Type, and has at least one key property."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Content_EntityIsNotEntityType">
            <summary>
            A string like "This operation requires the entity to be of an Entity Type, either mark its key properties, or attribute the class with DataServiceEntityAttribute"
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_EntityNotContained">
            <summary>
            A string like "The context is not currently tracking the entity."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_EntityAlreadyContained">
            <summary>
            A string like "The context is already tracking the entity."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_DifferentEntityAlreadyContained">
            <summary>
            A string like "The context is already tracking a different entity with the same resource Uri."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_DidNotOriginateAsync">
            <summary>
            A string like "The current object did not originate the async result."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_AsyncAlreadyDone">
            <summary>
            A string like "The asynchronous result has already been completed."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_OperationCanceled">
            <summary>
            A string like "The operation has been canceled."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_NoLoadWithInsertEnd">
            <summary>
            A string like "The context can not load the related collection or reference for objects in the added state."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_NoRelationWithInsertEnd">
            <summary>
            A string like "One or both of the ends of the relationship is in the added state."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_NoRelationWithDeleteEnd">
            <summary>
            A string like "One or both of the ends of the relationship is in the deleted state."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_RelationAlreadyContained">
            <summary>
            A string like "The context is already tracking the relationship."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_RelationNotRefOrCollection">
            <summary>
            A string like "The sourceProperty is not a reference or collection of the target's object type."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_AddLinkCollectionOnly">
            <summary>
            A string like "AddLink and DeleteLink methods only work when the sourceProperty is a collection."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_AddRelatedObjectCollectionOnly">
            <summary>
            A string like "AddRelatedObject method only works when the sourceProperty is a collection."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_AddRelatedObjectSourceDeleted">
            <summary>
            A string like "AddRelatedObject method only works if the source entity is in a non-deleted state."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_SetLinkReferenceOnly">
            <summary>
            A string like "SetLink method only works when the sourceProperty is not a collection."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BatchNotSupportedForMediaLink">
            <summary>
            A string like "Saving entities with the [MediaEntry] attribute is not currently supported in batch mode. Use non-batched mode instead."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_UnexpectedZeroRawRead">
            <summary>
            A string like "Unexpected result (&lt;= 0) from stream.Read() while reading raw data for this property."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_ChildResourceExists">
            <summary>
            A string like "Attempt to delete a link between two objects failed because the identity of the target object of the link depends on the source object of the link."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_ContentTypeRequiredForNamedStream">
            <summary>
            A string like "The ContentType value for a named stream cannot be null or an empty string."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_EntityNotMediaLinkEntry">
            <summary>
            A string like "This operation requires that the specified entity be a Media Link Entry and that the ReadStreamUri be available. However, the specified entity either is not a Media Link Entry or does not have a valid ReadStreamUri value. If the entity is a Media Link Entry, re-query the data service for this entity to obtain a valid ReadStreamUri value."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_SetSaveStreamWithoutEditMediaLink">
            <summary>
            A string like "There is no edit-media link for the entity's media stream. Make sure that the edit-media link is specified for this stream."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BothLocationAndIdMustBeSpecified">
            <summary>
            A string like "The response should have both 'Location' and 'DataServiceId' headers or the response should not have any of these headers."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BodyOperationParametersNotAllowedWithGet">
            <summary>
            A string like "OperationParameter of type BodyOperationParameter cannot be specified when the HttpMethod is set to GET."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_MissingOperationParameterName">
            <summary>
            A string like "The Name property of an OperationParameter must be set to a non-null, non-empty string."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_DuplicateUriOperationParameterName">
            <summary>
            A string like "Multiple uri operation parameters were found with the same name. Uri operation parameter names must be unique."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_DuplicateBodyOperationParameterName">
            <summary>
            A string like "Multiple body operation parameters were found with the same name. Body operation parameter names must be unique."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_ExecuteExpectsGetOrPost">
            <summary>
            A string like "The HttpMethod must be GET or POST."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_EndExecuteExpectedVoidResponse">
            <summary>
            A string like "EndExecute overload for void service operations and actions received a non-void response from the server."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_NullElementInOperationParameterArray">
            <summary>
            A string like "The operation parameters array contains a null element which is not allowed."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_EntityMetadataBuilderIsRequired">
            <summary>
            A string like "An implementation of ODataEntityMetadataBuilder is required, but a null value was returned from GetEntityMetadataBuilder."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_BuildingRequestAndSendingRequestCannotBeUsedTogether">
            <summary>
            A string like "SendingRequest is a deprecated event. If using BuildingRequest, you cannot use SendingRequest. Use SendingRequest2 instead."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_CannotChangeStateToAdded">
            <summary>
            A string like "The ChangeState method does not support the 'Added' state because additional information is needed for inserts. Use either AddObject or AddRelatedObject instead."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_CannotChangeStateToModifiedIfNotUnchanged">
            <summary>
            A string like "The entity's state can only be changed to 'Modified' if it is currently 'Unchanged'."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_OnMessageCreatingReturningNull">
            <summary>
            A string like "DataServiceContext.Configurations.RequestPipeline.OnMessageCreating property must not return a null value. Please return a non-null value for this property."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_SendingRequest_InvalidWhenUsingOnMessageCreating">
            <summary>
            A string like "SendingRequest cannot be used in combination with the DataServiceContext.Configurations.RequestPipeline.OnMessageCreating property. Please use SendingRequest2 with DataServiceContext.Configurations.RequestPipeline.OnMessageCreating property instead."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceClientFormat_AtomEventsOnlySupportedWithAtomFormat">
            <summary>
            A string like "The ReadingEntity and WritingEntity events are only supported when using the Atom format. Use the Atom format or remove all registered handlers for these events before enabling another format."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceClientFormat_LoadServiceModelRequired">
            <summary>
            A string like "When you call the UseJson method without a parameter, you must use the LoadServiceModel property to provide a valid IEdmModel instance."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceClientFormat_JsonUnsupportedForLessThanV3">
            <summary>
            A string like "UseJson is not supported when the MaxProtocolVersion is set to less than V3. This JSON format is only supported by OData v3 or a later version."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceClientFormat_ValidServiceModelRequiredForJson">
            <summary>
            A string like "To use the JSON format, you must first call DataServiceContext.Format.UseJson() and supply a valid service model."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ClientType_MultipleImplementationNotSupported">
            <summary>
            A string like "Multiple implementations of ICollection&lt;T&gt; is not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ClientType_CollectionOfCollectionNotSupported">
            <summary>
            A string like "Collection properties of a collection type are not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceException_GeneralError">
            <summary>
            A string like "An error occurred while processing this request."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Deserialize_GetEnumerator">
            <summary>
            A string like "Only a single enumeration is supported by this IEnumerable."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Deserialize_MixedTextWithComment">
            <summary>
            A string like "Error processing response stream. Element value interspersed with a comment is not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Deserialize_ExpectingSimpleValue">
            <summary>
            A string like "Error processing response stream. The XML element contains mixed content."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Deserialize_MismatchAtomLinkLocalSimple">
            <summary>
            A string like "Error processing response stream. Atom payload has a link, local object has a simple value."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Deserialize_NoLocationHeader">
            <summary>
            A string like "The response to this POST request did not contain a 'location' header. That is not supported by this client."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Deserialize_MissingIdElement">
            <summary>
            A string like "Error processing response stream. Missing id element in the response."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Collection_NullCollectionItemsNotSupported">
            <summary>
            A string like "An item in the collection property has a null value. Collection properties that contain items with null values are not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Collection_ComplexTypesInCollectionOfPrimitiveTypesNotAllowed">
            <summary>
            A string like "A collection property of primitive types cannot contain an item of a complex type."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Collection_PrimitiveTypesInCollectionOfComplexTypesNotAllowed">
            <summary>
            A string like "A collection property of complex types cannot contain an item of a primitive type."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.HttpProcessUtility_ContentTypeMissing">
            <summary>
            A string like "Content-Type header value missing."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.HttpProcessUtility_MediaTypeMissingValue">
            <summary>
            A string like "Media type is missing a parameter value."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.HttpProcessUtility_MediaTypeRequiresSemicolonBeforeParameter">
            <summary>
            A string like "Media type requires a ';' character before a parameter definition."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.HttpProcessUtility_MediaTypeRequiresSlash">
            <summary>
            A string like "Media type requires a '/' character."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.HttpProcessUtility_MediaTypeRequiresSubType">
            <summary>
            A string like "Media type requires a subtype definition."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.HttpProcessUtility_MediaTypeUnspecified">
            <summary>
            A string like "Media type is unspecified."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.MaterializeFromAtom_CountNotPresent">
            <summary>
            A string like "Count value is not part of the response stream."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.MaterializeFromAtom_TopLevelLinkNotAvailable">
            <summary>
            A string like "The top level link is only available after the response has been enumerated."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.MaterializeFromAtom_CollectionKeyNotPresentInLinkTable">
            <summary>
            A string like "The collection is not part of the current entry"
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.MaterializeFromAtom_GetNestLinkForFlatCollection">
            <summary>
            A string like "This response does not contain any nested collections. Use null as Key instead."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ODataRequestMessage_GetStreamMethodNotSupported">
            <summary>
            A string like "GetStream method is not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Util_EmptyString">
            <summary>
            A string like "Empty string."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Util_EmptyArray">
            <summary>
            A string like "Empty array."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Util_NullArrayElement">
            <summary>
            A string like "Array contains a null element."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_TypeBinaryNotSupported">
            <summary>
            A string like "An operation between an expression and a type is not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_ConditionalNotSupported">
            <summary>
            A string like "The conditional expression is not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_ParameterNotSupported">
            <summary>
            A string like "The parameter expression is not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_LambdaNotSupported">
            <summary>
            A string like "Lambda Expressions not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_NewNotSupported">
            <summary>
            A string like "New Expressions not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_MemberInitNotSupported">
            <summary>
            A string like "Member Init Expressions not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_ListInitNotSupported">
            <summary>
            A string like "List Init Expressions not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_NewArrayNotSupported">
            <summary>
            A string like "New Array Expressions not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_InvocationNotSupported">
            <summary>
            A string like "Invocation Expressions not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_QueryOptionsOnlyAllowedOnLeafNodes">
            <summary>
            A string like "Can only specify query options (orderby, where, take, skip) after last navigation."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CantExpand">
            <summary>
            A string like "Expand query option not allowed."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CantNavigateWithoutKeyPredicate">
            <summary>
            A string like "Individual properties can only be selected from a single resource or as part of a type. Specify a key predicate to restrict the entity set to a single instance or project the property into a named or anonymous type."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CanOnlyApplyOneKeyPredicate">
            <summary>
            A string like "Multiple key predicates cannot be specified for the same entity set."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CantAddQueryOption">
            <summary>
            A string like "Custom query option not allowed."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_QueryOptionsOnlyAllowedOnSingletons">
            <summary>
            A string like "Cannot specify query options (orderby, where, take, skip, count) on single resource."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CannotAddCountOption">
            <summary>
            A string like "Cannot add count option to the resource set."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CannotAddCountOptionConflict">
            <summary>
            A string like "Cannot add count option to the resource set because it would conflict with existing count options."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_ProjectionOnlyAllowedOnLeafNodes">
            <summary>
            A string like "Can only specify 'select' query option after last navigation."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_ProjectionCanOnlyHaveOneProjection">
            <summary>
            A string like "Cannot translate multiple Linq Select operations in a single 'select' query option."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CannotConstructKnownEntityTypes">
            <summary>
            A string like "Construction of entity type instances must use object initializer with default constructor."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CannotCreateConstantEntity">
            <summary>
            A string like "Referencing of local entity type instances not supported when projecting results."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CanOnlyProjectTheLeaf">
            <summary>
            A string like "Can only project the last entity type in the query being translated."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CannotProjectWithExplicitExpansion">
            <summary>
            A string like "Cannot create projection while there is an explicit expansion specified on the same query."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_OfTypeArgumentNotAvailable">
            <summary>
            A string like "The target type for an OfType filter could not be determined."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_CannotUseTypeFiltersMultipleTimes">
            <summary>
            A string like "Non-redundant type filters (OfType&lt;T&gt;, C# 'as' and VB 'TryCast') can only be used once per resource set."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_TypeAsNotSupportedForMaxDataServiceVersionLessThan3">
            <summary>
            A string like "The expression 'TypeAs' is not supported when MaxProtocolVersion is less than '3.0'."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.ALinq_FormatQueryOptionNotSupported">
            <summary>
            A string like "The '$format' query option is not supported. Use the DataServiceContext.Format property to set the desired format."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DSKAttribute_MustSpecifyAtleastOnePropertyName">
            <summary>
            A string like "DataServiceKey attribute must specify at least one property name."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_LoadRequiresTargetCollectionObserved">
            <summary>
            A string like "Target collection for the Load operation must have an associated DataServiceContext."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_CannotStopTrackingChildCollection">
            <summary>
            A string like "The tracking of DataServiceCollection can not be stopped for child collections."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_OperationForTrackedOnly">
            <summary>
            A string like "This operation is only supported on collections that are being tracked."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_CannotDetermineContextFromItems">
            <summary>
            A string like "The DataServiceContext to which the DataServiceCollection instance belongs could not be determined. The DataServiceContext must either be supplied in the DataServiceCollection constructor or be used to create the DataServiceQuery or QueryOperationResponse object that is the source of the items in the DataServiceCollection."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_InsertIntoTrackedButNotLoadedCollection">
            <summary>
            A string like "An item could not be added to the collection. When items in a DataServiceCollection are tracked by the DataServiceContext, new items cannot be added before items have been loaded into the collection."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_MultipleLoadAsyncOperationsAtTheSameTime">
            <summary>
            A string like "A previous LoadAsync operation has not yet completed. You cannot call the LoadAsync method on the DataServiceCollection again until the previous operation has completed."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_LoadAsyncNoParamsWithoutParentEntity">
            <summary>
            A string like "The LoadAsync method cannot be called when the DataServiceCollection is not a child collection of a related entity."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceCollection_LoadAsyncRequiresDataServiceQuery">
            <summary>
            A string like "Only a typed DataServiceQuery object can be supplied when calling the LoadAsync method on DataServiceCollection."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataBinding_BindingOperation_DetachedSource">
            <summary>
            A string like "Add/Update/Delete operation cannot be performed on a child entity, if the parent entity is already detached."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.AtomParser_SingleEntry_NoneFound">
            <summary>
            A string like "Expected exactly one Atom entry in the response from the server, but none was found."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.AtomParser_SingleEntry_MultipleFound">
            <summary>
            A string like "Expected exactly one Atom entry in the response from the server, but more than one was found."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.AtomParser_SingleEntry_ExpectedFeedOrEntry">
            <summary>
            A string like "Expected an Atom feed or entry in the response from the server, but found an unexpected element instead."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.AtomMaterializer_DataServiceCollectionNotSupportedForNonEntities">
            <summary>
            A string like "A DataServiceCollection can only contain entity types. Primitive and complex types cannot be contained by this kind of collection."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.AtomMaterializer_ResetAfterEnumeratorCreationError">
            <summary>
            A string like "Reset should never be called for collection reader in an internal enumerable."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceQuery_EnumerationNotSupported">
            <summary>
            A string like "This target framework does not enable you to directly enumerate over a data service query. This is because enumeration automatically sends a synchronous request to the data service. Because this framework only supports asynchronous operations, you must instead call the BeginExecute and EndExecute methods to obtain a query result that supports enumeration."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_SendingRequestEventArgsNotHttp">
            <summary>
            A string like "Only instances of HttpWebRequest are currently allowed for this property. Other subtypes of WebRequest are not supported."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.DataServiceRequest_FailGetCount">
            <summary>
            A string like "Failed to get the count value from the server."
            </summary>
        </member>
        <member name="P:System.Data.Services.Client.Strings.Context_ExecuteExpectedVoidResponse">
            <summary>
            A string like "Execute overload for void service operations and actions received a non-void response from the server."
            </summary>
        </member>
    </members>
</doc>