Skip to content

Commit

Permalink
Description on Creating, Created has been expanded
Browse files Browse the repository at this point in the history
Added missing method call in the description of DeletingVersions, DeletedVersions
  • Loading branch information
radyz committed Aug 6, 2013
1 parent bb17005 commit c52912e
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions Documentation/Reference/Events-v6/ContentService-Events.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ The ContentService class is the most commonly used type when extending Umbraco u
<td>(IContentService sender, NewEventArgs&lt;IContent&gt; e)</td>
<td>
Raised when ContentService.CreateContent is called in the API. <br />
The event is fired after the ContentType of the Content object has been set. <br/>
The event is fired after the ContentType, ParentId and Name of the IContent object have been set. <br/>
"sender" will be the current IContentService object.<br />
"e" will provide:
<ol>
<li>Entity: Gets the IContent object being created.</li>
<li>Alias: Gets the ContentTypeAlias of the IContent being created.</li>
<li>ParentId: Gets the Id of the parent of the IContent being created.</li>
<li>Parent: Gets the parent of the IContent being created.</li>
<li>Alias: Gets the ContentTypeAlias of the IContent object being created.</li>
<li>ParentId: Gets the Id of the parent of the IContent object being created.</li>
<li>Parent: Gets the parent of the IContent object being created.</li>
</ol>
</td>
</tr>
Expand All @@ -29,15 +29,15 @@ The ContentService class is the most commonly used type when extending Umbraco u
<td>(IContentService sender, NewEventArgs&lt;IContent&gt; e)</td>
<td>
Raised when ContentService.CreateContent is called in the API.<br />
The event is fired after the CreatedId and WriterId of the Content object have been set.<br />
NOTE: The content object has been created, but not saved so it does not have an identity yet (meaning no Id has been set).<br />
The event is fired after the CreatorId and WriterId of the Content object have been set.<br />
NOTE: The IContent object has been created, but not saved so it does not have an identity yet (meaning no Id has been set).<br />
"sender" will be the current IContentService object.<br />
"e" will provide:
<ol>
<li>Entity: Gets the created IContent object.</li>
<li>Alias: Gets the ContentTypeAlias of the IContent being created.</li>
<li>ParentId: Gets the Id of the parent of the IContent being created.</li>
<li>Parent: Gets the parent of the IContent being created.</li>
<li>Alias: Gets the ContentTypeAlias of the IContent object being created.</li>
<li>ParentId: Gets the Id of the parent of the IContent object being created.</li>
<li>Parent: Gets the parent of the IContent object being created.</li>
</ol>
</td>
</tr>
Expand Down Expand Up @@ -180,7 +180,7 @@ The ContentService class is the most commonly used type when extending Umbraco u
<td>DeletingVersions</td>
<td>(IContentService sender, DeleteRevisionsEventArgs e)</td>
<td>
Raised when ContentService.DeleteVersions is called in the API.<br />
Raised when ContentService.DeleteVersion, ContentService.DeleteVersions are called in the API.<br />
"sender" will be the current IContentService object.<br />
"e" will provide:
<ol>
Expand All @@ -196,7 +196,7 @@ The ContentService class is the most commonly used type when extending Umbraco u
<td>DeletedVersions</td>
<td>(IContentService sender, DeleteRevisionsEventArgs e)</td>
<td>
Raised when ContentService.DeleteVersions is called in the API.<br />
Raised when ContentService.DeleteVersion, ContentService.DeleteVersions are called in the API.<br />
"sender" will be the current IContentService object.<br />
"e" will provide:
<ol>
Expand Down

0 comments on commit c52912e

Please sign in to comment.