Groves.FakeMarkupExtensions.CustomResourceRequestInfo.CustomResourceRequestInfo C# (CSharp) Method

CustomResourceRequestInfo() public method

Constructor
public CustomResourceRequestInfo ( string resourceId, string objectType, string propertyName, string propertyType )
resourceId string id of the resource
objectType string expected type of the result
propertyName string name of the property where the value is assigned
propertyType string type of the property where the value is assigned
        public CustomResourceRequestInfo(string resourceId, string objectType, string propertyName, string propertyType)
        {
            ResourceId = resourceId;
            ObjectType = objectType;
            PropertyName = propertyName;
            PropertyType = propertyType;
        }
CustomResourceRequestInfo