System.Net.Cookie.Dump C# (CSharp) Method

Dump() private method

private Dump ( ) : void
return void
        internal void Dump()
        {
#if !NETNative_SystemNetHttp
            if (NetEventSource.IsEnabled)
            {
                if (NetEventSource.IsEnabled) NetEventSource.Info(this, 
                                  "Cookie: "        + ToString() + "->\n"
                                + "\tComment    = " + Comment + "\n"
                                + "\tCommentUri = " + CommentUri + "\n"
                                + "\tDiscard    = " + Discard + "\n"
                                + "\tDomain     = " + Domain + "\n"
                                + "\tExpired    = " + Expired + "\n"
                                + "\tExpires    = " + Expires + "\n"
                                + "\tName       = " + Name + "\n"
                                + "\tPath       = " + Path + "\n"
                                + "\tPort       = " + Port + "\n"
                                + "\tSecure     = " + Secure + "\n"
                                + "\tTimeStamp  = " + TimeStamp + "\n"
                                + "\tValue      = " + Value + "\n"
                                + "\tVariant    = " + Variant + "\n"
                                + "\tVersion    = " + Version + "\n"
                                + "\tHttpOnly    = " + HttpOnly + "\n"
                                );
            }
#endif
        }
#endif