Microsoft.Http.HttpContent.DeferredStreamContent.DeferredStreamContent C# (CSharp) Méthode

DeferredStreamContent() public méthode

public DeferredStreamContent ( Func stream, long length ) : System
stream Func
length long
Résultat System
            public DeferredStreamContent(Func<Stream> stream, long? length)
            {
                this.func = stream;
                this.length = length;
            }