File: FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\ContractCodeDomInfo.cs
Web Access
Project: src\src\dotnet-svcutil\lib\src\dotnet-svcutil-lib.csproj (dotnet-svcutil-lib)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
 
namespace System.Runtime.Serialization
{
    using System;
    using Microsoft.CodeDom;
    using System.Collections.Generic;
 
    internal class ContractCodeDomInfo
    {
        internal bool IsProcessed;
        internal CodeTypeDeclaration TypeDeclaration;
        internal CodeTypeReference TypeReference;
        internal CodeNamespace CodeNamespace;
        internal bool ReferencedTypeExists;
        internal bool UsesWildcardNamespace;
        private string _clrNamespace;
        private Dictionary<string, object> _memberNames;
 
        internal string ClrNamespace
        {
            get { return (ReferencedTypeExists ? null : _clrNamespace); }
            set
            {
                if (ReferencedTypeExists)
                    throw /*System.Runtime.Serialization.*/DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRSerialization.CannotSetNamespaceForReferencedType, TypeReference.BaseType)));
                else
                    _clrNamespace = value;
            }
        }
 
        internal Dictionary<string, object> GetMemberNames()
        {
            if (ReferencedTypeExists)
                throw /*System.Runtime.Serialization.*/DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(string.Format(SRSerialization.CannotSetMembersForReferencedType, TypeReference.BaseType)));
            else
            {
                if (_memberNames == null)
                {
                    _memberNames = new Dictionary<string, object>(StringComparer.Ordinal);
                }
                return _memberNames;
            }
        }
    }
}