System.Net.WebSockets.HttpListenerWebSocketContext.CopyPrincipal C# (CSharp) Method

CopyPrincipal() private static method

private static CopyPrincipal ( IPrincipal user ) : IPrincipal
user IPrincipal
return IPrincipal
        private static IPrincipal CopyPrincipal(IPrincipal user)
        {
            if (user != null)
            {
                throw new NotImplementedException();
            }

            return null;
        }
    }