Apistry.ApiController.HttpActionParameterDocumentationMetadata.HttpActionParameterDocumentationMetadata C# (CSharp) Method

HttpActionParameterDocumentationMetadata() public method

public HttpActionParameterDocumentationMetadata ( String name, Type type, String description ) : System
name String
type System.Type
description String
return System
        public HttpActionParameterDocumentationMetadata(String name, Type type, String description)
        {
            _Name = name;
            _Type = type;
            _Description = description;
        }
HttpActionParameterDocumentationMetadata