/wp-handle-document-events-differently-with-udocumenteventhandler-03.cs
Created Nov 10, 2018
[DocumentEventHandler(Include = new[] { "documentTypeA" })] | |
public class DocumentTypeAEventHandler : DocumentEventHandler | |
{ | |
public override void Saving(IContentService contentService, SaveEventArgs<IContent> args) | |
{ | |
base.Saving(contentService, args); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment