// This file contains quick hacks to represent code that will be autogenerated. namespace Google.ProtocolBuffers.DescriptorProtos { /// /// This only exists until we've got the real code... /// /* public abstract class TemporaryMessage : IMessage where T : IMessage { #region IMessage Members public IMessage DefaultInstanceForType { get { throw new System.NotImplementedException(); } } public IBuilder CreateBuilderForType() { throw new System.NotImplementedException(); } #endregion #region IMessage Members public Google.ProtocolBuffers.Descriptors.MessageDescriptor DescriptorForType { get { throw new System.NotImplementedException(); } } public System.Collections.Generic.IDictionary AllFields { get { throw new System.NotImplementedException(); } } public bool HasField(Google.ProtocolBuffers.Descriptors.FieldDescriptor field) { throw new System.NotImplementedException(); } public object this[Google.ProtocolBuffers.Descriptors.FieldDescriptor field] { get { throw new System.NotImplementedException(); } } public int GetRepeatedFieldCount(Google.ProtocolBuffers.Descriptors.FieldDescriptor field) { throw new System.NotImplementedException(); } public object this[Google.ProtocolBuffers.Descriptors.FieldDescriptor field, int index] { get { throw new System.NotImplementedException(); } } public UnknownFieldSet UnknownFields { get { throw new System.NotImplementedException(); } } public bool IsInitialized { get { throw new System.NotImplementedException(); } } public void WriteTo(CodedOutputStream output) { throw new System.NotImplementedException(); } public int SerializedSize { get { throw new System.NotImplementedException(); } } public ByteString ToByteString() { throw new System.NotImplementedException(); } public byte[] ToByteArray() { throw new System.NotImplementedException(); } public void WriteTo(System.IO.Stream output) { throw new System.NotImplementedException(); } IMessage IMessage.DefaultInstanceForType { get { throw new System.NotImplementedException(); } } IBuilder IMessage.CreateBuilderForType() { throw new System.NotImplementedException(); } #endregion } public partial class MessageOptions : TemporaryMessage { public bool MessageSetWireFormat; } public partial class DescriptorProto : TemporaryMessage { public string Name { get; set; } public string FullName { get; set; } public MessageOptions Options { get; set; } } public partial class EnumDescriptorProto : TemporaryMessage { public string Name { get; set; } public string FullName { get; set; } public EnumOptions Options { get; set; } } public partial class EnumOptions : TemporaryMessage { } public partial class EnumValueDescriptorProto : TemporaryMessage { public string Name { get; set; } public string FullName { get; set; } public EnumValueOptions Options { get; set; } } public partial class EnumValueOptions : TemporaryMessage { } public partial class FieldDescriptorProto : TemporaryMessage { public string Name { get; set; } public string FullName { get; set; } public FieldOptions Options { get; set; } } public partial class FieldOptions : TemporaryMessage { } public partial class FileDescriptorProto : TemporaryMessage { public string Name { get; set; } public string FullName { get; set; } public FileOptions Options { get; set; } public string Package { get; set; } } public partial class FileOptions : TemporaryMessage { } public partial class MethodDescriptorProto : TemporaryMessage { public string Name { get; set; } public string FullName { get; set; } public MethodOptions Options { get; set; } } public partial class MethodOptions : TemporaryMessage { } public partial class ServiceDescriptorProto : TemporaryMessage { public string Name { get; set; } public string FullName { get; set; } public ServiceOptions Options { get; set; } } public partial class ServiceOptions : TemporaryMessage { } */ }