<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>IContentType Plugin Type</title><link>https://community.telligent.com/community/11/w/api-documentation/64330/icontenttype-plugin-type</link><description /><dc:language>en-US</dc:language><generator>14.0.0.586 14</generator><item><title>IContentType Plugin Type</title><link>https://community.telligent.com/community/11/w/api-documentation/64330/icontenttype-plugin-type</link><pubDate>Tue, 19 Nov 2019 19:35:59 GMT</pubDate><guid isPermaLink="false">f835e384-7935-49c7-a463-adad7cd16d5a</guid><dc:creator>Ben Tiedt</dc:creator><comments>https://community.telligent.com/community/11/w/api-documentation/64330/icontenttype-plugin-type#comments</comments><description>Current Revision posted to API Documentation by Ben Tiedt on 11/19/2019 19:35:59&lt;br /&gt;
&lt;hr class="generated-documentation-start" style="border-width:0;" /&gt;&lt;div class="documentation"&gt;&lt;p&gt;&lt;code&gt;IContentType&lt;/code&gt; is defined in the &lt;code&gt;Telligent.Evolution.Extensibility.Content.Version1&lt;/code&gt; namespace of Telligent.Evolution.Platform.dll&lt;/p&gt;&lt;div class="documentation-stub"&gt;&lt;h2&gt;&lt;a id="Definition" name="Definition"&gt;&lt;/a&gt;Definition&lt;/h2&gt;&lt;pre&gt;interface IContentType : [[IPlugin Plugin Type|IPlugin]]
{
	Guid[] ApplicationTypes { get;  }
	Guid ContentTypeId { get;  }
	string ContentTypeName { get;  }
	void AttachChangeEvents([[IContentStateChanges Plugin Supplementary Type|IContentStateChanges]] stateChanges);
	[[IContent Plugin Supplementary Type|IContent]] Get(Guid contentId);
}
&lt;/pre&gt;&lt;/div&gt;&lt;div class="documentation-members properties"&gt;&lt;h2&gt;&lt;a id="Properties" name="Properties"&gt;&lt;/a&gt;Properties&lt;/h2&gt;&lt;table cellspacing="0" cellpadding="2" width="99%" class="WikiTable"&gt;&lt;thead&gt;&lt;tr class="WikiTableBgBlue"&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;Description&lt;/th&gt;&lt;th&gt;Default&lt;/th&gt;&lt;th&gt;Options&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;ApplicationTypes&lt;/td&gt;&lt;td&gt;&lt;code&gt;Guid[]&lt;/code&gt;&lt;/td&gt;&lt;td&gt;The ApplicationTypeIds to which this type of content can be added.&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ContentTypeId&lt;/td&gt;&lt;td&gt;&lt;code&gt;Guid&lt;/code&gt;&lt;/td&gt;&lt;td&gt;A Guid that represents the type of the content.  This value is set by the developer.&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td&gt;ContentTypeName&lt;/td&gt;&lt;td&gt;&lt;code&gt;string&lt;/code&gt;&lt;/td&gt;&lt;td&gt;The name of the content type.&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;div class="documentation-members methods"&gt;&lt;h2&gt;&lt;a id="Methods" name="Methods"&gt;&lt;/a&gt;Methods&lt;/h2&gt;&lt;h3&gt;	void AttachChangeEvents(IContentStateChanges stateChanges);
&lt;/h3&gt;&lt;p&gt;Provides an object with privileged access for updating the platform’s internal records of the content.  StateChanges should be saved as a class variable and used to update the internal records whenever the content is updated or deleted.&lt;/p&gt;&lt;h4&gt;&lt;a id="Parameters" name="Parameters"&gt;&lt;/a&gt;Parameters&lt;/h4&gt;&lt;table cellspacing="0" cellpadding="2" width="99%" class="WikiTable"&gt;&lt;thead&gt;&lt;tr class="WikiTableBgBlue"&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;Description&lt;/th&gt;&lt;th&gt;Required&lt;/th&gt;&lt;th&gt;Default&lt;/th&gt;&lt;th&gt;Options&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;stateChanges&lt;/td&gt;&lt;td&gt;&lt;code&gt;[[IContentStateChanges Plugin Supplementary Type|IContentStateChanges]]&lt;/code&gt;&lt;/td&gt;&lt;td&gt;State Changes&lt;/td&gt;&lt;td&gt;Required&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;h3&gt;	IContent Get(Guid contentId);
&lt;/h3&gt;&lt;p&gt;Used to retrieve content of the plugin’s ContentTypeId with the provided ContentId.&lt;/p&gt;&lt;h4&gt;&lt;a id="Parameters" name="Parameters"&gt;&lt;/a&gt;Parameters&lt;/h4&gt;&lt;table cellspacing="0" cellpadding="2" width="99%" class="WikiTable"&gt;&lt;thead&gt;&lt;tr class="WikiTableBgBlue"&gt;&lt;th&gt;Name&lt;/th&gt;&lt;th&gt;Type&lt;/th&gt;&lt;th&gt;Description&lt;/th&gt;&lt;th&gt;Required&lt;/th&gt;&lt;th&gt;Default&lt;/th&gt;&lt;th&gt;Options&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td&gt;contentId&lt;/td&gt;&lt;td&gt;&lt;code&gt;Guid&lt;/code&gt;&lt;/td&gt;&lt;td&gt;Content Id&lt;/td&gt;&lt;td&gt;Required&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;td&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;h4&gt;&lt;a id="Return_Type" name="Return_Type"&gt;&lt;/a&gt;Return Type&lt;/h4&gt;&lt;p&gt;&lt;code&gt;[[IContent Plugin Supplementary Type|IContent]]&lt;/code&gt;&lt;/p&gt;&lt;/div&gt;&lt;div class="documentation-extensions"&gt;&lt;h2&gt;&lt;a id="Extensions" name="Extensions"&gt;&lt;/a&gt;Extensions&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;[[IReviewableContentType Plugin Type|IReviewableContentType]]&lt;/li&gt;&lt;li&gt;[[IAbuseCheckingContentType Plugin Type|IAbuseCheckingContentType]]&lt;/li&gt;&lt;li&gt;[[ISecuredContentType Plugin Type|ISecuredContentType]]&lt;/li&gt;&lt;li&gt;[[IBookmarkableContentType Plugin Type|IBookmarkableContentType]]&lt;/li&gt;&lt;li&gt;[[ICommentableContentType Plugin Type|ICommentableContentType]]&lt;/li&gt;&lt;li&gt;[[IContentSpecificHtmlEventsExecutor Plugin Type|IContentSpecificHtmlEventsExecutor]]&lt;/li&gt;&lt;li&gt;[[IFileEmbeddableContentType Plugin Type|IFileEmbeddableContentType]]&lt;/li&gt;&lt;li&gt;[[IPreviewableContentType Plugin Type|IPreviewableContentType]]&lt;/li&gt;&lt;li&gt;[[IViewableContentType Plugin Type|IViewableContentType]]&lt;/li&gt;&lt;li&gt;[[ILikeableContentType Plugin Type|ILikeableContentType]]&lt;/li&gt;&lt;li&gt;[[IMentionableContentType Plugin Type|IMentionableContentType]]&lt;/li&gt;&lt;li&gt;[[IMentionContainingContentType Plugin Type|IMentionContainingContentType]]&lt;/li&gt;&lt;li&gt;[[IRateableContentType Plugin Type|IRateableContentType]]&lt;/li&gt;&lt;li&gt;[[ISearchableContentType Plugin Type|ISearchableContentType]]&lt;/li&gt;&lt;li&gt;[[ISubscribableContentType Plugin Type|ISubscribableContentType]]&lt;/li&gt;&lt;li&gt;[[ITaggableContentType Plugin Type|ITaggableContentType]]&lt;/li&gt;&lt;li&gt;[[IWebContextualContentType Plugin Type|IWebContextualContentType]]&lt;/li&gt;&lt;li&gt;[[IContentEmbeddableContentType Plugin Type|IContentEmbeddableContentType]]&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;hr class="generated-documentation-end" style="border-width:0;" /&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
</description></item></channel></rss>