X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.Security%2FSystem.Security.Cryptography.Pkcs%2FSignerInfoCollection.cs;h=a5bd5dd2a3f22a58bdcfa601c9a9e3188c23eb63;hb=c39145af2464b19374fac41b252e07480ae1a197;hp=1f0d38253a73ec564d526241c74abe46e76bc6eb;hpb=7f449e7aff8f374d13db7023c7b326dde01b763d;p=mono.git diff --git a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignerInfoCollection.cs b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignerInfoCollection.cs index 1f0d38253a7..a5bd5dd2a3f 100755 --- a/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignerInfoCollection.cs +++ b/mcs/class/System.Security/System.Security.Cryptography.Pkcs/SignerInfoCollection.cs @@ -2,11 +2,10 @@ // SignerInfoCollection.cs - System.Security.Cryptography.Pkcs.SignerInfoCollection // // Author: -// Sebastien Pouliot (spouliot@motus.com) +// Sebastien Pouliot // // (C) 2003 Motus Technologies Inc. (http://www.motus.com) -// - +// Copyright (C) 2004 Novell Inc. (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the @@ -35,7 +34,7 @@ using System.Collections; namespace System.Security.Cryptography.Pkcs { - public class SignerInfoCollection : ICollection { + public sealed class SignerInfoCollection : ICollection { private ArrayList _list; @@ -75,7 +74,10 @@ namespace System.Security.Cryptography.Pkcs { _list.CopyTo (array, index); } - public void CopyTo (RecipientInfo[] array, int index) {} + [MonoTODO] + public void CopyTo (SignerInfo[] array, int index) + { + } public SignerInfoEnumerator GetEnumerator () { @@ -89,4 +91,4 @@ namespace System.Security.Cryptography.Pkcs { } } -#endif \ No newline at end of file +#endif