Exemple #1
0
        public void write_WStringValue(string val)
        {
            object boxed = new WStringValue(val);

            Marshal(s_wstringValueType, AttributeExtCollection.EmptyCollection,
                    boxed, m_cdrOut);
        }
Exemple #2
0
        /// <summary>
        /// reads a corba wstring value
        /// </summary>
        /// <returns>the unboxed string</returns>
        public string read_WStringValue()
        {
            WStringValue result = (WStringValue)Unmarshal(s_wstringValueType,
                                                          AttributeExtCollection.EmptyCollection,
                                                          m_cdrIn);

            return((string)result.Unbox());
        }