<PackageReference Include="Relativity.Api" Version="10.0.199.13" />

ICSRFManager

public interface ICSRFManager
Helper to enforce CSRF(Cross Site Request Forgery) support.
string CSRFHeaderName { get; }

This gets you the Header Name that the CSRF should be submitted as.

string CSRFToken { get; }

Gets you the CSRF token used for the users sessions. This lets put the CSRF on your Custom Page.

void CheckAgainstCSRF(string csrf)

This will check that the current request has the CSRF.

void CheckCSRF()

This will check that the current request has the CSRF.