RSACryptoServiceProvider.PublicOnly 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示 RSACryptoServiceProvider 对象是否仅包含公钥。
public:
property bool PublicOnly { bool get(); };
public bool PublicOnly { get; }
[System.Runtime.InteropServices.ComVisible(false)]
public bool PublicOnly { get; }
member this.PublicOnly : bool
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.PublicOnly : bool
Public ReadOnly Property PublicOnly As Boolean
属性值
如果 RSACryptoServiceProvider 对象仅包含公钥,则为 true
;否则为 false
。
- 属性
注解
RSACryptoServiceProvider类只能使用公钥初始化,也可以使用公钥和私钥进行初始化。 PublicOnly使用 属性可以确定当前实例是仅包含公钥还是同时包含公钥和私钥。