Interface IContentReference
Interface for an object that describes information on how to reference an item of content, for example through a Tableau API.
Namespace: Tableau.Migration
Assembly: Tableau.Migration.dll
Syntax
public interface IContentReference : IEquatable<IContentReference>, IRestIdentifiable
Properties
ContentUrl
Get the site-unique "content URL" of the content item, or an empty string if the content type does not use a content URL.
Declaration
string ContentUrl { get; }
Property Value
Type | Description |
---|---|
string |
Location
Gets the logical location path of the content item, for project-level content this is the project path and the content item name.
Declaration
ContentLocation Location { get; }
Property Value
Type | Description |
---|---|
ContentLocation |
Name
Gets the name of the content item. This is equivalent to the last segment of the Location. Renames should be performed through mapping.
Declaration
string Name { get; }
Property Value
Type | Description |
---|---|
string |