System.IO.NetFxToWinRtStreamAdapter.ThrowCloningNotSupported C# (CSharp) Méthode

ThrowCloningNotSupported() private static méthode

private static ThrowCloningNotSupported ( String methodName ) : void
methodName String
Résultat void
        private static void ThrowCloningNotSupported(String methodName)
        {
            NotSupportedException nse = new NotSupportedException(SR.Format(SR.NotSupported_CloningNotSupported, methodName));
            nse.SetErrorCode(HResults.E_NOTIMPL);
            throw nse;
        }