Bloom.Api.RequestInfo.GetPostString C# (CSharp) Method

GetPostString() public method

public GetPostString ( ) : string
return string
        public string GetPostString()
        {
            Debug.Assert(_actualContext.Request.ContentType.ToLowerInvariant().Contains("text/plain"), "The backend expected this post to have content-type text/plain.");
            return GetPostStringInner();
        }