Microsoft.Protocols.TestSuites.BranchCache.BranchCacheFrameworkAdapter.GetContentInfo C# (CSharp) Method

GetContentInfo() public method

Get the content Info from the content server.
public GetContentInfo ( string serverAddress, int port, string uri ) : Content_Information_Data_Structure
serverAddress string The content server address.
port int The port that the content server is listening.
uri string The path of the file to request.
return Microsoft.Protocols.TestTools.StackSdk.BranchCache.Pccrc.Content_Information_Data_Structure
        public Content_Information_Data_Structure GetContentInfo(string serverAddress, int port, string uri)
        {
            if (this.pccrtpResponse == null)
            {
                this.GetPccrtpResponse(serverAddress, port, uri);
            }

            Content_Information_Data_Structure contentInfoStack = this.pccrtpResponse.ContentInfo;

            return contentInfoStack;
        }