SharpArch.Domain.DomainModel.BaseObject.GetOrAdd C# (CSharp) Method

GetOrAdd() private method

private GetOrAdd ( Type type ) : TypePropertyDescriptor
type System.Type
return TypePropertyDescriptor
        TypePropertyDescriptor GetOrAdd(Type type)
        {
            return signaturePropertiesCache.GetOrAdd(type,
                t => new TypePropertyDescriptor(t, GetTypeSpecificSignatureProperties()));
        }