Hypermedia.Metadata.Runtime.RuntimeField.CreateRuntimeField C# (CSharp) Method

CreateRuntimeField() static private method

Creates a runtime field from a property info.
static private CreateRuntimeField ( PropertyInfo propertyInfo ) : RuntimeField
propertyInfo System.Reflection.PropertyInfo The property info to create the runtime field for.
return RuntimeField
        internal static RuntimeField CreateRuntimeField(PropertyInfo propertyInfo)
        {
            return new RuntimeField(propertyInfo);
        }