Example #1
0
            /// <exception cref="SharpCifs.Dcerpc.Ndr.NdrException"></exception>
            public override void Decode_out(NdrBuffer src)
            {
                int infop = src.Dec_ndr_long();

                if (infop != 0)
                {
                    if (Info == null)
                    {
                        Info = new TimeOfDayInfo();
                    }
                    Info.Decode(src);
                }
                Retval = src.Dec_ndr_long();
            }
Example #2
0
			/// <exception cref="SharpCifs.Dcerpc.Ndr.NdrException"></exception>
			public override void Decode_out(NdrBuffer src)
			{
				int infop = src.Dec_ndr_long();
				if (infop != 0)
				{
					if (Info == null)
					{
						Info = new TimeOfDayInfo();
					}
					Info.Decode(src);
				}
				Retval = src.Dec_ndr_long();
			}
Example #3
0
 public RemoteTod(string servername, TimeOfDayInfo info)
 {
     this.Servername = servername;
     this.Info       = info;
 }
Example #4
0
			public RemoteTod(string servername, TimeOfDayInfo info)
			{
				this.Servername = servername;
				this.Info = info;
			}