System.Xml.Serialization.StructMapping.this C# (CSharp) Method

this() private method

private this ( string name, string ns ) : objectINameScope.System.Reflection
name string
ns string
return objectINameScope.System.Reflection
        object INameScope.this[string name, string ns]
        {
            get
            {
                object named = LocalElements[name, ns];
                if (named != null)
                    return named;
                if (_baseMapping != null)
                    return ((INameScope)_baseMapping)[name, ns];
                return null;
            }
            set
            {
                LocalElements[name, ns] = value;
            }
        }
        internal StructMapping NextDerivedMapping