Ejemplo n.º 1
0
        public override string ToString()
        {
            var str = new AsString(this);

            ToString(str);

            // don't do title of unresolved objects as this may force the resolving of the object.
            if (ResolveState.IsTransient() || ResolveState.IsResolved() || ResolveState.IsAggregated())
            {
                str.Append("title", TitleString());
            }
            str.AppendAsHex("poco-hash", poco.GetHashCode());
            return(str.ToString());
        }
Ejemplo n.º 2
0
 private bool ElementsLoaded()
 {
     return(ResolveState.IsTransient() || ResolveState.IsResolved());
 }