ByteQuantifiedSize.Multiply operator (ByteQuantifiedSize, Int32)
Multiplies a ByteQuantifiedSize instance by an integer.
Namespace: Microsoft.Exchange.Data
Assembly: Microsoft.Exchange.Data (in Microsoft.Exchange.Data.dll)
Syntax
'Declaration
Public Shared Operator * ( _
value1 As ByteQuantifiedSize, _
value2 As Integer _
) As ByteQuantifiedSize
'Usage
Dim value1 As ByteQuantifiedSize
Dim value2 As Integer
Dim returnValue As ByteQuantifiedSize
returnValue = (value1 * value2)
public static ByteQuantifiedSize operator *(
ByteQuantifiedSize value1,
int value2
)
Parameters
value1
Type: Microsoft.Exchange.Data.ByteQuantifiedSizeThe byte-quantified size to multiply.
value2
Type: System.Int32The value to multiply by.
Return value
Type: Microsoft.Exchange.Data.ByteQuantifiedSize
A new byte-quantified size that reflects the multiplication of the value of the value1 parameter by the value of the value2 parameter.