Dev2.Factory.DebugStateFactory.Create C# (CSharp) Method

Create() public static method

public static Create ( System.Guid serverID, System.Guid resourceID, StateType stateType, string message ) : IDebugState
serverID System.Guid
resourceID System.Guid
stateType StateType
message string
return IDebugState
        public static IDebugState Create(Guid serverID, Guid resourceID, StateType stateType, string message)
        {
            return new DebugState
                {
                    ServerID = serverID,
                    OriginatingResourceID = resourceID,
                    StateType = stateType,
                    Message = message
                };
        }
    }

Same methods

DebugStateFactory::Create ( string message, IContextualResourceModel resourceModel ) : IDebugState
DebugStateFactory