Apistry.Dto.DtoPropertyDocumentationMetadata.DtoPropertyDocumentationMetadata C# (CSharp) Method

DtoPropertyDocumentationMetadata() public method

public DtoPropertyDocumentationMetadata ( PropertyDescriptor property, String description, Object exampleValue, IEnumerable excludedMethods ) : System
property System.ComponentModel.PropertyDescriptor
description String
exampleValue Object
excludedMethods IEnumerable
return System
        public DtoPropertyDocumentationMetadata(PropertyDescriptor property, String description, Object exampleValue, IEnumerable<HttpMethod> excludedMethods)
        {
            _Property = property;
            _Description = description;
            _ExampleValue = exampleValue;
            _ExcludedMethods = excludedMethods;
        }
DtoPropertyDocumentationMetadata