diff options
author | Arnaud Simon <arnaudsimon@apache.org> | 2008-09-10 11:59:45 +0000 |
---|---|---|
committer | Arnaud Simon <arnaudsimon@apache.org> | 2008-09-10 11:59:45 +0000 |
commit | 26acdc039853786717e5392f567fc84dcf9db82c (patch) | |
tree | 9148a36aa9cb93dd4dd04dd6ccf2b7b1aada8043 | |
parent | d6cebdfac24c729d0088fca54fc9d19e0fa9f915 (diff) | |
download | qpid-python-26acdc039853786717e5392f567fc84dcf9db82c.tar.gz |
qpid-1277: updated Composite to override Head and Body
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@693804 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/dotnet/client-010/gentool/Composite.tpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/dotnet/client-010/gentool/Composite.tpl b/qpid/dotnet/client-010/gentool/Composite.tpl index 3b8bb00850..6020964019 100644 --- a/qpid/dotnet/client-010/gentool/Composite.tpl +++ b/qpid/dotnet/client-010/gentool/Composite.tpl @@ -183,7 +183,7 @@ if pack > 0: ${ if segments: - out(""" public Header Header { + out(""" public override Header Header { get { return _header;} set { _header = value;} } @@ -193,13 +193,13 @@ if segments: return this; } - public MemoryStream Body + public override MemoryStream Body { get{ return _body;} set{ _body = value;} } - public $name body(MemoryStream body) + public $name body(MemoryStream body) { Body = body; return this; |