summary refs log tree commit diff
path: root/crypto/src/x509/store/IX509Selector.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/x509/store/IX509Selector.cs')
-rw-r--r--crypto/src/x509/store/IX509Selector.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/crypto/src/x509/store/IX509Selector.cs b/crypto/src/x509/store/IX509Selector.cs
new file mode 100644
index 000000000..09f6f1849
--- /dev/null
+++ b/crypto/src/x509/store/IX509Selector.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Org.BouncyCastle.X509.Store
+{
+	public interface IX509Selector
+#if !SILVERLIGHT
+		: ICloneable
+#endif
+	{
+#if SILVERLIGHT
+        object Clone();
+#endif
+        bool Match(object obj);
+	}
+}