RavenFS.Synchronization.Rdc.Wrapper.SigGenerator.EvaluatetRecursionDepth C# (CSharp) 메소드

EvaluatetRecursionDepth() 공개 메소드

public EvaluatetRecursionDepth ( Stream source ) : int
source Stream
리턴 int
		public int EvaluatetRecursionDepth(Stream source)
		{
			int result;
			var hr = _rdcLibrary.ComputeDefaultRecursionDepth(source.Length, out result);
			if (hr != 0)
			{
				throw new RdcException("Failed to compute the recursion depth.", hr);
			}
			return result;
		}