Skip to content

Instantly share code, notes, and snippets.

@vbilopav
Last active September 1, 2015 13:28
Show Gist options
  • Save vbilopav/504feb86439461ed5839 to your computer and use it in GitHub Desktop.
Save vbilopav/504feb86439461ed5839 to your computer and use it in GitHub Desktop.
[WcfErrorHandler] // custom atribut koji imeplementira IErrorHandler, logiranje sistemskih WCF grešaka
public abstract class WcfBaseService
{
protected WcfBaseService()
{
if (OperationContext.Current == null) return; // ako WCF ne postoji, izađi odmah
WcfUtils.LogRequest();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment