Mono.Cecil.WindowsRuntimeProjections.ProjectionInfo.ProjectionInfo C# (CSharp) Method

ProjectionInfo() public method

public ProjectionInfo ( string winrt_namespace, string clr_namespace, string clr_name, string clr_assembly, bool attribute = false ) : System
winrt_namespace string
clr_namespace string
clr_name string
clr_assembly string
attribute bool
return System
            public ProjectionInfo(string winrt_namespace, string clr_namespace, string clr_name, string clr_assembly, bool attribute = false)
            {
                WinRTNamespace = winrt_namespace;
                ClrNamespace = clr_namespace;
                ClrName = clr_name;
                ClrAssembly = clr_assembly;
                Attribute = attribute;
            }
WindowsRuntimeProjections.ProjectionInfo