CryptoAPITransform.InputBlockSize 属性

定义

获取输入块大小。

public:
 property int InputBlockSize { int get(); };
public int InputBlockSize { get; }
member this.InputBlockSize : int
Public ReadOnly Property InputBlockSize As Integer

属性值

输入块的大小(以字节为单位)。

实现

示例

下面的代码示例演示如何调用 InputBlockSize 属性来检索输入块大小。 此代码示例是为 CryptoAPITransform 类提供的一个更大示例的一部分。

int inputBlockSize = cryptoTransform->InputBlockSize;
int inputBlockSize = cryptoTransform.InputBlockSize;
Dim inputBlockSize As Integer = cryptoTransform.InputBlockSize

适用于

另请参阅