System.Runtime.Remoting.Identity.Identity C# (CSharp) Méthode

Identity() private méthode

private Identity ( String objURI, String URL ) : System.Globalization
objURI String
URL String
Résultat System.Globalization
        internal Identity(String objURI, String URL)
        {
            BCLDebug.Assert(objURI!=null,"objURI should not be null here");
            if (URL != null)
            {
                _flags |= IDFLG_WELLKNOWN;
                _URL = URL;
            }
            SetOrCreateURI(objURI, true /*calling from ID ctor*/);
        }

Same methods

Identity::Identity ( bool bContextBound ) : System.Globalization