Avro.Message.Message C# (CSharp) Method

Message() public method

public Message ( string name, string doc, IList request, Schema response, UnionSchema error ) : System
name string
doc string
request IList
response Schema
error UnionSchema
return System
        public Message(string name, string doc, IList<Parameter> request, Schema response, UnionSchema error)
        {
            if (string.IsNullOrEmpty(name)) throw new ArgumentNullException("name", "name cannot be null.");
            this.Request = request;
            this.Response = response;
            this.Error = error;
            this.Name = name;
            this.Doc = doc;
        }