Beispiel #1
0
        public void MergeFrom(pb::CodedInputStream input)
        {
            uint tag;

            while ((tag = input.ReadTag()) != 0)
            {
                switch (tag)
                {
                default:
                    _unknownFields = pb::UnknownFieldSet.MergeFieldFrom(_unknownFields, input);
                    break;

                case 10: {
                    Name = input.ReadString();
                    break;
                }

                case 18: {
                    if (location_ == null)
                    {
                        location_ = new global::LocationProxy.Point();
                    }
                    input.ReadMessage(location_);
                    break;
                }
                }
            }
        }
Beispiel #2
0
 public void MergeFrom(Detail other)
 {
     if (other == null)
     {
         return;
     }
     if (other.Name.Length != 0)
     {
         Name = other.Name;
     }
     if (other.location_ != null)
     {
         if (location_ == null)
         {
             location_ = new global::LocationProxy.Point();
         }
         Location.MergeFrom(other.Location);
     }
     _unknownFields = pb::UnknownFieldSet.MergeFrom(_unknownFields, other._unknownFields);
 }
Beispiel #3
0
 /// <summary>
 /// Obtains the detail at a given position.
 ///
 /// A detail with an empty name is returned if there's no detail at the given
 /// position.
 /// </summary>
 /// <param name="request">The request received from the client.</param>
 /// <param name="context">The context of the server-side call handler being invoked.</param>
 /// <returns>The response to send back to the client (wrapped by a task).</returns>
 public virtual global::System.Threading.Tasks.Task <global::LocationProxy.Detail> GetDetail(global::LocationProxy.Point request, grpc::ServerCallContext context)
 {
     throw new grpc::RpcException(new grpc::Status(grpc::StatusCode.Unimplemented, ""));
 }
Beispiel #4
0
 /// <summary>
 /// Obtains the detail at a given position.
 ///
 /// A detail with an empty name is returned if there's no detail at the given
 /// position.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="options">The options for the call.</param>
 /// <returns>The call object.</returns>
 public virtual grpc::AsyncUnaryCall <global::LocationProxy.Detail> GetDetailAsync(global::LocationProxy.Point request, grpc::CallOptions options)
 {
     return(CallInvoker.AsyncUnaryCall(__Method_GetDetail, null, options, request));
 }
Beispiel #5
0
 /// <summary>
 /// Obtains the detail at a given position.
 ///
 /// A detail with an empty name is returned if there's no detail at the given
 /// position.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="headers">The initial metadata to send with the call. This parameter is optional.</param>
 /// <param name="deadline">An optional deadline for the call. The call will be cancelled if deadline is hit.</param>
 /// <param name="cancellationToken">An optional token for canceling the call.</param>
 /// <returns>The call object.</returns>
 public virtual grpc::AsyncUnaryCall <global::LocationProxy.Detail> GetDetailAsync(global::LocationProxy.Point request, grpc::Metadata headers = null, global::System.DateTime?deadline = null, global::System.Threading.CancellationToken cancellationToken = default(global::System.Threading.CancellationToken))
 {
     return(GetDetailAsync(request, new grpc::CallOptions(headers, deadline, cancellationToken)));
 }
Beispiel #6
0
 /// <summary>
 /// Obtains the detail at a given position.
 ///
 /// A detail with an empty name is returned if there's no detail at the given
 /// position.
 /// </summary>
 /// <param name="request">The request to send to the server.</param>
 /// <param name="options">The options for the call.</param>
 /// <returns>The response received from the server.</returns>
 public virtual global::LocationProxy.Detail GetDetail(global::LocationProxy.Point request, grpc::CallOptions options)
 {
     return(CallInvoker.BlockingUnaryCall(__Method_GetDetail, null, options, request));
 }