DicomObjects.NET.8.48 Documentation
DicomObjects.DicomWeb Namespace / RestfulResponse Class / RestfulResponse Constructor
Content of the HTTP response that this object represents






In This Topic
    RestfulResponse Constructor
    In This Topic
    Creates a new object from the incoming HTTP response
    Syntax
    'Declaration
     
    
    Public Function New( _
       ByVal content As System.Net.Http.HttpContent _
    )
    'Usage
     
    
    Dim content As System.Net.Http.HttpContent
     
    Dim instance As New RestfulResponse(content)
    public RestfulResponse( 
       System.Net.Http.HttpContent content
    )
    public RestfulResponse( 
        content: System.Net.Http.HttpContent
    ); 
    public function RestfulResponse( 
       content : System.Net.Http.HttpContent
    );
    public: RestfulResponse( 
       System.Net.Http.HttpContent* content
    )
    public:
    RestfulResponse( 
       System.Net.Http.HttpContent^ content
    )

    Parameters

    content
    Content of the HTTP response that this object represents
    Requirements

    Target Platforms: .NET CLR 4.8 or higher

    See Also