The BaseSeoUrlProvider type exposes the following members.

Methods

  NameDescription
AssertMaxOneCommandOfEachType
Checks that the given CommandInfoCollection contains at most one instance of NavigationCommand, RecordDetailsCommand, AggregateRecordDetailsCommand, DimensionSearchCommand, CompoundDimensionSearchCommand, and MetadataCommand. Throws an exception if multiple commands of the same type have been found.
AssertRequiredMembers
Check that any required members are set to a non-null value, otherwise a InvalidOperationException is thrown. The only required member is CommandCollectionSerializer.
Construct
This method constructs the URL that corresponds to the passed commands and extra parameters. This method concatenates the baseUrl with the formatted string that represents the state, path parameters, and query string parameters.
(Overrides BasicUrlProviderConstruct(String, CommandInfoCollection, NameValueCollection).)
ConstructUrl (Inherited from UrlProvider.)
DecodeUrlParams
Base 36 decode any UrlParam contained within the urlParams. Only the parameters contained within the ParameterEncoders will be base 36 decoded.
Deconstruct
This method updates the passed commands with the state contained in the request URI.
(Overrides BasicUrlProviderDeconstruct(Uri, CommandInfoCollection, NameValueCollection).)
DeconstructUrl (Inherited from UrlProvider.)
EncodeParameters
Base 36 encode any of the ParameterEncoders.
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Finalize
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by garbage collection.
(Inherited from Object.)
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetPathParamsString
Return a string containing the concatenation of path parameters for the URL. Parameters are ordered based on the order in the SortedDictionary. Path parameters occur before the "?" on a URL.
GetQueryParamsString
Return a string containing the concatenation of query string parameters for the URL. Query string parameters occur after the "?" on a URL.
GetSerializationProvider (Inherited from BasicUrlProvider.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
ToString
Returns a String that represents the current Object.
(Inherited from Object.)
ValidateParameterEncoders
Verify that the ParameterEncoders contains only a combination of the N, An, Dn, and Ne parameters.
VerifyValidCommands
Ensure the CommandInfoCollection does not contain any invalid command combinations that the URL Optimization API can not represent. If the CommandInfoCollection contains an invalid command combination, then an InvalidOperationException will be thrown. The command combinations that are not supported are: 1. NavigationCommand and RecordDetailsCommand 2. NavigationCommand and AggregateRecordDetailsCommand 3. RecordDetailsCommand and AggregateRecordDetailsCommand 4. RecordDetailsCommand and DimensionSearchCommand 5. RecordDetailsCommand and CompoundDimensionSearchCommand 6. RecordDetailsCommand and MetadataCommand 7. AggregateRecordDetailsCommand and DimensionSearchCommand 8. AggregateRecordDetailsCommand and CompoundDimensionSearchCommand 9. AggregateRecordDetailsCommand and MetadataCommand

See Also