| OssUtilsComputeContentMd5 Method  | 
            Compute the MD5 on the input stream with the given size.
            
 
Namespace: Aliyun.OSS.UtilAssembly: Aliyun.OSS (in Aliyun.OSS.dll) Version: 2.8.0.0 (2.8.0)
Syntaxpublic static string ComputeContentMd5(
	Stream input,
	long partSize
)
Public Shared Function ComputeContentMd5 ( 
	input As Stream,
	partSize As Long
) As String
public:
static String^ ComputeContentMd5(
	Stream^ input, 
	long long partSize
)
static member ComputeContentMd5 : 
        input : Stream * 
        partSize : int64 -> string 
Parameters
- input
 - Type: System.IOStream
The input stream - partSize
 - Type: SystemInt64
the part size---it could be less than the stream size 
Return Value
Type: 
StringMD5 digest value
See Also